Cara Menghubungkan JS Berikutnya dengan 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}`)
Cooperative Chimpanzee