Skip to content

Instantly share code, notes, and snippets.

@fdjones
Created June 17, 2018 09:27
Show Gist options
  • Save fdjones/a5abb07466141588dd401fb397409043 to your computer and use it in GitHub Desktop.
Save fdjones/a5abb07466141588dd401fb397409043 to your computer and use it in GitHub Desktop.
const { Client } = require('pg')
const client = new Client()
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()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment