pg-readable
v0.2.1
Published
High level shortcut to a readable query result stream for PostgreSQL
Downloads
4
Readme
node-pg-readable
Quick helper for streaming query results from postgres. It will connect to postgres using node-postgres and environment variables After connecting, it will execute a streaming query, return the stream, and automatically close the connection to the server when the stream ends.
install
$ npm install pg-readable
use
var readable = require('pg-readable')
var stream = readable('SELECT * FROM my_big_table')
stream.pipe(/* bla bla bla */)
license
MIT