SupabaseのpostgreSQLに繋げたい
deno-postgresの例に従ってパスワードやホストをそのまま書いていたところを.envを使って読み込む形に変更したいためdotenvを使用して
typescript
1import { Client } from "https://deno.land/x/postgres@v0.16.1/mod.ts"; 2import "https://deno.land/x/dotenv/load.ts"; 3 4const client = new Client({ 5 user: Deno.env.get("DB_USER"), 6 database: Deno.env.get("POSTGRES_DB"), 7 hostname: Deno.env.get("DB_HOST"), 8 password: Deno.env.get("DB_PASSWORD"), 9 port: Deno.env.get("DB_PORT"), 10 tls: { 11 enabled: false 12 } 13}); 14await client.connect(); 15 16{ 17 const result = await client.queryArray("SELECT ID, NAME FROM FRIENDS"); 18 console.log(result.rows); // [[1, 'Carlos'], [2, 'John'], ...] 19 20 21} 22{ 23 const result = await client.queryArray 24 `SELECT ID, NAME FROM FRIENDS WHERE ID = ${1}`; 25 console.log(result.rows); // [[1, 'Carlos']] 26} 27 28{ 29 const result = await client.queryObject("SELECT ID, NAME FROM FRIENDS"); 30 console.log(result.rows); // [{id: 1, name: 'Carlos'}, {id: 2, name: 'Johnru'}, ...] 31} 32 33{ 34 const result = await client.queryObject 35 `SELECT ID, NAME FROM FRIENDS WHERE ID = ${1}`; 36 console.log(result.rows); // [{id: 1, name: 'Carlos'}] 37} 38 39 40await client.end();
上のような形に書き換えたいです。deno-postgresもdotenvも最新バージョンです。
発生している問題・エラーメッセージ
$ deno run --allow-read --allow-env --allow-net sample.ts
error: Uncaught (in promise) Error: failed to lookup address information: nodename nor servname provided, or not known this.#conn = await Deno.connect(options); ^ at async Object.connect (deno:ext/net/01_net.js:333:17) at async Connection.#openConnection (https://deno.land/x/postgres@v0.16.1/connection/connection.ts:253:18) at async Connection.#startup (https://deno.land/x/postgres@v0.16.1/connection/connection.ts:338:7) at async Connection.startup (https://deno.land/x/postgres@v0.16.1/connection/connection.ts:491:11) at async Client.connect (https://deno.land/x/postgres@v0.16.1/client.ts:220:7) at async file:///Users/$HOME/Projects/postgres-example/sample.ts:14:1
上記のエラーが出てしまいます。Deno.env.get()
を使わずにそのまま書いたときはエラーなく正常に動きます。一度.env
を使うように変更してしまうとパスワードなどをそのまま書いてもエラーになります。
どなたかわかる方いらっしゃいましたらご教授いただければと思います。よろしくお願いします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。