error: Could not find package 'postgres' from referrer 'file:///deno-dir/npm/registry.npmjs.org/drizzle-orm/0.38.3/postgres-js/driver.js' ([email protected]).
error: Could not find package 'postgres' from referrer 'file:///deno-dir/npm/registry.npmjs.org/drizzle-orm/0.38.3/postgres-js/driver.js' ([email protected]).
You might not get the error if you have postgres package installed globally via npm. To easily reproduce it, try running it using Docker:
Create a file named main.ts with the following content:
import { drizzle } from 'npm:[email protected]/postgres-js';import postgresjs from 'https://deno.land/x/[email protected]/mod.js';const queryClient = postgresjs('postgresql://postgres:infrapsp@localhost:5432/main');const db = drizzle(queryClient);const result = await db.execute('select 1');console.log(result);
import { drizzle } from 'npm:[email protected]/postgres-js';import postgresjs from 'https://deno.land/x/[email protected]/mod.js';const queryClient = postgresjs('postgresql://postgres:infrapsp@localhost:5432/main');const db = drizzle(queryClient);const result = await db.execute('select 1');console.log(result);
Now let's run it using Docker:
docker run -v $(pwd):/app -it denoland/deno:alpine-2.1.4 sh
docker run -v $(pwd):/app -it denoland/deno:alpine-2.1.4 sh
Run this command:
deno run /app/main.ts
deno run /app/main.ts
You'll see the following error:
error: Could not find package 'postgres' from referrer 'file:///deno-dir/npm/registry.npmjs.org/drizzle-orm/0.38.3/postgres-js/driver.js' ([email protected]).
error: Could not find package 'postgres' from referrer 'file:///deno-dir/npm/registry.npmjs.org/drizzle-orm/0.38.3/postgres-js/driver.js' ([email protected]).
If we switch to using postgres from npm instead of deno, it works for connections without SSL, but with SSL enabled, it returns another error:
error: Uncaught (in promise) Error: write CONNECT_TIMEOUT undefined:undefined
error: Uncaught (in promise) Error: write CONNECT_TIMEOUT undefined:undefined
The way to go it to keep it as it was in drizzle 0.30, this issue started to happening after 0.31.
Does anyone have any suggestions on how to solve this issue?
Report hasn't been filed before. I have verified that the bug I'm about to report hasn't been filed before. What version of drizzle-orm are you using? 0.38.0 What version of drizzle-kit...