Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

pgpromise

vjames191k0.1.1

Returns promises instead of using callbacks.

pgpromise, promises, postgres, pg, promise

readme

pgPromise Build Status

Returns promises instead of using callbacks.

Getting Started

Install the module with: npm install pgpromise

var pg = require('pg');
var PgPromise = require('pgpromise');

// use connection string or connection config object
var conString = "postgres://postgres:1234@localhost/postgres";
var db = new PgPromise(pg, conString);

// make promised queries.
db.connect().then(function(conn) {
  conn.client.queryP('SELECT * from table').then(function(result) {
    console.log(result.rows);
  });
});

Documentation

(Coming soon)

Examples

(Coming soon)

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

License

Copyright (c) 2014 Victor J. Reventos. Licensed under the MIT license.