2.0.2 • Published 8 years ago

pg-connect v2.0.2

Weekly downloads
44
License
MIT
Repository
github
Last release
8 years ago

DEPRECATED

As of pg@6, node-postgres has promise suport out of the box. Do not use this package. It is no longer maintained!

pg-connect

js-standard-style Circle CI Dependency Status

Connect to a postgres database with a promise api. Pretty much just an implementation of the suggestions in the bluebird api

Installation

npm install --save pg-connect

Usage

var Promise = require('bluebird')
var getConnection = require('pg-connect')(connectionString)

Promise.using(
  getConnection(),
  function (query) {
    return query('SELECT * from foo')
  }
).
then(function (results) {
  // ... use the results
})

where query is a promisified version of client.query in pg.

An example with transactions:

var Promise = require('bluebird')
var getConnection = require('pg-connect')(connectionString)

getConnection.withTransaction(function (query) {
  return query('SELECT * from foo')
}).
then(function (results) {
  // ... use the results
})

Also, getConnection.end is equivalent to pg.end. Similarly, getConnection.defaults is equivalent to pg.defauts.

Testing

  1. Ensure you have a local postgres database named pg_connect_test or export DATABASE_URL pointing to a database.
  2. npm test