mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
const pg = require("pg");
|
|
|
|
const pool = new pg.Pool();
|
|
(async () => {
|
|
const res = await pool.query("SELECT NOW()");
|
|
console.log(res.rows[0]);
|
|
pool.end();
|
|
})();
|