/node-pg-readable

Quick helper for streaming query results from postgres

Primary LanguageJavaScript

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