Returns promises instead of using callbacks.
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);
}).fin(conn.done); // returns the client to the pool.
});
(Coming soon)
(Coming soon)
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.
(Nothing yet)
Copyright (c) 2014 Victor J. Reventos. Licensed under the MIT license.