nor-pg

1.3.1 • Public • Published

nor-pg

Promise-based PostgreSQL library for Node.js

Usage example

var PostgreSQL = require('nor-pg');
PostgreSQL.start('postgres://username:password@localhost/dbname').query('SELECT * FROM foo').then(function(db) {
    var rows = db.fetch();
    console.log(util.inspect(rows));
    return db;
}).commit();

Installing

You can install the module from NPM: npm install nor-pg

...and use it in your code:

var PostgreSQL = require('nor-pg');

Events usage example

nor-pg also implements PostgreSQL's NOTIFY and LISTEN with a familiar looking Node.js interface.

You can listen your events through PostgreSQL server like this:

pg.connect(PGCONFIG).then(function(db) {
    return db.on('test', function(a, b, c) {
        debug.log(
            'test payload: \n',
            ' a = ', a, '\n',
            ' b = ', b, '\n',
            ' c = ', c
        );
    });
});

...and emit events like this:

pg.connect(PGCONFIG).then(function(db) {
    return db.emit('test', {"foo":"bar"}, ["hello", "world"], 1234).then(function() {
        return db.disconnect();
    });
});
  • .emit(event_name, ...) will encode arguments as JSON payload and execute NOTIFY event_name, payload

  • .on(event_name, listener) and .once(event_name, listener) will start LISTEN event_name and when PostgreSQL notifies, parses the payload (as JSON array) as arguments for the listener and calls it.

Please note: Our interface is not exactly standard interface. Our methods will return promises, so you can and should catch possible errors.

You should not use anything other than standard [a-z][a-z0-9_]* as event names. We use or might use internally events starting with $ and _, so especially not those!

Reference

The full API reference.


Extended promises

We use the Q library with nor-extend to provide chainable extended promises.

These promises are essentially the same as Q promises with the exception that you can also use methods from this library just like when chaining methods in synchronic code. Just remember to pass on the instance of PostgreSQL in your own promise functions (as you would need to do when chaining in synchronic code).


PostgreSQL.start()

Creates new PostgreSQL instance, connects it and start transaction in it.

Returns an extended promise of PostgreSQL instance after these operations.

PostgreSQL.start('postgres://username:password@localhost/dbname').query('INSERT INTO foo (a, b) VALUES ($1, $2)', [1, 2]).commit().then(function() {
    util.debug("All OK.");
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

new PostgreSQL(config)

The constructor function. You don't need to use this if you use .start().

Returns new instance of PostgreSQL.

var pg = new PostgreSQL('postgres://username:password@localhost/dbname');
pg.connect().start().query('INSERT INTO foo (a, b) VALUES ($1, $2)', [1, 2]).commit().then(function() {
    util.debug("All OK.");
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

PostgreSQL.prototype.connect()

Create connection (or take it from the pool).

You don't need to use this if you use .start().

Returns an extended promise of connected PostgreSQL instance.

var pg = new PostgreSQL('postgres://username:password@localhost/dbname');
pg.connect().query('INSERT INTO foo (a, b) VALUES ($1, $2)', [1, 2]).disconnect().then(function() {
    util.debug("All OK.");
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

PostgreSQL.prototype.disconnect()

Disconnect connection (or actually release it back to pool).

You don't need to call this if you use .commit() or .rollback(), which will call disconnect(), too.

Returns an extended promise of disconnected PostgreSQL instance.

var pg = new PostgreSQL('postgres://username:password@localhost/dbname');
pg.connect().query('INSERT INTO foo (a, b) VALUES ($1, $2)', [1, 2]).disconnect().then(function() {
    util.debug("All OK.");
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

PostgreSQL.prototype._query(str[, params])

Lower level implementation of the query function.

Returns a promise of the result of the query directly. No results are saved to the result queue.

var pg = new PostgreSQL('postgres://username:password@localhost/dbname');
pg.connect()._query('SELECT FROM foo WHERE a = $1', [1]).then(function(rows) {
    util.debug("Rows = " + util.inspect(rows) );
    return pg.disconnect();
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

PostgreSQL.prototype.query(str[, params])

The default query implementation.

The result of the query can be fetched from the result queue of PostgreSQL object using .fetch().

Returns an extended promise of the instance of PostgreSQL object.

PostgreSQL.start('postgres://username:password@localhost/dbname').query('SELECT FROM foo WHERE a = $1', [1]).then(function(pg) {
    var rows = pg.fetch();
    util.debug("Rows = " + util.inspect(rows) );
    return pg.commit();
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

PostgreSQL.prototype.start()

Start transaction.

It will create new instance of PostgreSQL, then call .connect() and .start().

Returns an extended promise of the instance of PostgreSQL object after these operations.

PostgreSQL.start('postgres://username:password@localhost/dbname').query('SELECT FROM foo WHERE a = $1', [1]).then(function(pg) {
    var rows = pg.fetch();
    util.debug("Rows = " + util.inspect(rows) );
    return pg.commit();
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

PostgreSQL.prototype.commit()

Commits transaction. This will also call .disconnect().

Returns an extended promise of the instance of PostgreSQL object after these operations.

PostgreSQL.start('postgres://username:password@localhost/dbname').query('SELECT FROM foo WHERE a = $1', [1]).then(function(pg) {
    var rows = pg.fetch();
    util.debug("Rows = " + util.inspect(rows) );
    return pg.commit();
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

PostgreSQL.prototype.rollback()

Rollback transaction. This will also call .disconnect().

Returns an extended promise of the instance of PostgreSQL object after these operations.

PostgreSQL.start('postgres://username:password@localhost/dbname').query('...').query('SELECT * FROM foo WHERE a = $1', [1]).then(function(pg) {
    var rows = pg.fetch();
    util.debug("Rows = " + util.inspect(rows) );
    if(rows.length >= 3) {
        return pg.rollback();
    }
    return pg.commit();
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

PostgreSQL.prototype.fetch()

Fetch next result from the result queue.

Returns the next value in the result queue of undefined if no more results.

This is implemented at ActionObject of nor-extend.

PostgreSQL.start('postgres://username:password@localhost/dbname').query('SELECT * FROM foo').then(function(pg) {
    var rows = pg.fetch();
    util.debug("Rows = " + util.inspect(rows) );
    return pg.commit();
}).fail(function(err) {
    util.error("Query failed: " + err);
}).done();

PostgreSQL.scope([where])

This is a helper function for implementing rollback handler for failed operations.

var scope = pg.scope();
pg.start(opts.pg).then(pg.scope(scope)).query('...').then(...).commit().fail(scope.rollback)

Commercial Support

You can buy commercial support from Sendanor.

Dependencies (5)

Dev Dependencies (9)

Package Sidebar

Install

npm i nor-pg

Weekly Downloads

0

Version

1.3.1

License

MIT

Unpacked Size

38.2 kB

Total Files

15

Last publish

Collaborators

  • jhh