Answers for "connect postgresql to node js"

0

postgresql nodejs

const { Client } = require('pg')const client = new Client();(async () => {  await client.connect()  const res = await client.query('SELECT $1::text as message', ['Hello world!'])  console.log(res.rows[0].message) // Hello world!  await client.end()})()
Posted by: Guest on September-08-2020
0

how to connect next js with postgresql localhost

const pgp = require('pg-promise')();

// Get the values for these variables from configuration
const user = ...
const password = ...
const host = ...
const port = ...
const database = ...

const db = pgp(`postgres://${user}:${password}@${host}:${port}/${database}`)
Posted by: Guest on October-29-2020

Code answers related to "connect postgresql to node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language