@norjs/pg
v2.0.0
Published
NorJS PostgreSQL library for NodeJS
Downloads
11
Readme
@norjs/pg (Originally sendanor/nor-pg)
Promise-based PostgreSQL library NorJS micro services running in NodeJS.
Usage example
import NrPostgreSQL from '@norjs/pg';
const PGCONFIG = 'postgres://username:password@localhost/dbname';
class SampleCode {
async static run () {
const tr = await NrPostgreSQL.start(PGCONFIG);
await tr.query('SELECT * FROM foo');
const rows = tr.fetch();
console.log(rows);
return await tr.commit();
}
}
Installing
You can install the module from NPM: npm install @norjs/pg
...and use it in your code:
import NrPostgreSQL from '@norjs/pg';
Events usage example
@norjs/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:
class SampleCode {
async static run () {
const db = await NrPostgreSQL.connect(PGCONFIG);
db.on('test', (a, b, c) => {
console.log(
'test payload: \n',
' a = ', a, '\n',
' b = ', b, '\n',
' c = ', c
);
});
}
}
...and emit events like this:
class SampleCode {
async static run () {
const db = await NrPostgreSQL.connect(PGCONFIG);
await db.emit('test', {"foo":"bar"}, ["hello", "world"], 1234);
return db.disconnect();
}
}
.emit(event_name, ...)
will encode arguments as JSON payload and executeNOTIFY event_name, payload
.on(event_name, listener)
and.once(event_name, listener)
will startLISTEN event_name
and when PostgreSQL notifies, parses the payload (as JSON array) as arguments for the listener and calls it.
Please Note: 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.
Promises
We use standard NodeJS (ES6) promises.
NrPostgreSQL.start()
Creates new NrPostgreSQL instance, connects it and start transaction in it.
Returns an promise of NrPostgreSQL instance after these operations.
class SampleCode {
async static run () {
const tr = await NrPostgreSQL.start(PGCONFIG);
await tr.query('INSERT INTO foo (a, b) VALUES ($1, $2)', [1, 2]);
await tr.commit();
console.debug("All OK.");
}
}
new NrPostgreSQL(config)
The constructor function. You don't need to use this if you use
.start()
.
Returns new instance of PostgreSQL.
class SampleCode {
async static run () {
const pg = new NrPostgreSQL(PGCONFIG);
await pg.connect();
await pg.start();
await pg.query('INSERT INTO foo (a, b) VALUES ($1, $2)', [1, 2]);
await pg.commit();
console.log("All OK.");
}
}
PostgreSQL.prototype.connect()
Create connection (or take it from the pool).
You don't need to use this if you use
.start()
.
Returns a promise of connected PostgreSQL instance.
class SampleCode {
async static run () {
let pg = new NrPostgreSQL(PGCONFIG);
await pg.connect();
await pg.query('INSERT INTO foo (a, b) VALUES ($1, $2)', [1, 2]);
await pg.disconnect();
console.log("All OK.");
}
}
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()
](https://github
.com/norjs/pg#postgresqlprototyperollback),
which will call disconnect()
, too.
Returns a promise of disconnected PostgreSQL instance.
class SampleCode {
async static run () {
let pg = new NrPostgreSQL(PGCONFIG);
await pg.connect();
await pg.query('INSERT INTO foo (a, b) VALUES ($1, $2)', [1, 2]);
await pg.disconnect();
console.log("All OK.");
}
}
PostgreSQL.prototype.directQuery(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.
class SampleCode {
async static run () {
const pg = new NrPostgreSQL(PGCONFIG);
await pg.connect();
const rows = await pg.directQuery('SELECT FROM foo WHERE a = $1', [1]);
console.log("Rows = " , rows );
pg.disconnect();
}
}
PostgreSQL.prototype.query(str[, params])
The default query implementation.
The result of the query can be fetched from the result queue of NrPostgreSQL
object using .fetch()
.
Returns a promise of the instance of PostgreSQL object.
class SampleCode {
async static run () {
const pg = await NrPostgreSQL.start(PGCONFIG);
await pg.query('SELECT FROM foo WHERE a = $1', [1]);
const rows = pg.fetch();
console.debug("Rows = ", rows);
return await pg.commit();
}
}
PostgreSQL.prototype.start()
Start transaction.
It will create new instance of PostgreSQL, then call
.connect()
and
.start()
.
Returns a promise of the instance of PostgreSQL object after these operations.
class SampleCode {
async static run () {
const pg = await NrPostgreSQL.start(PGCONFIG);
await pg.query('SELECT FROM foo WHERE a = $1', [1]);
let rows = pg.fetch();
console.log("Rows = ", rows);
return await pg.commit();
}
}
PostgreSQL.prototype.commit()
Commits transaction. This will also call
.disconnect()
.
Returns a promise of the instance of PostgreSQL object after these operations.
class SampleCode {
async static run () {
const pg = await NrPostgreSQL.start(PGCONFIG);
await pg.query('SELECT FROM foo WHERE a = $1', [1]);
let rows = pg.fetch();
console.log("Rows = " , rows );
return await pg.commit();
}
}
PostgreSQL.prototype.rollback()
Rollback transaction. This will also call
.disconnect()
.
Returns a promise of the instance of PostgreSQL object after these operations.
class SampleCode {
async static run () {
const pg = await NrPostgreSQL.start(PGCONFIG);
await pg.query('INSERT INTO foo (1, 2, 3)');
await pg.query('SELECT * FROM foo WHERE a = $1', [1]);
let rows = pg.fetch();
console.log("Rows = " , rows );
if (rows.length >= 3) {
return await pg.rollback();
}
return await pg.commit();
}
}
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.
class SampleCode {
async static run () {
const pg = await NrPostgreSQL.start(PGCONFIG);
await pg.query('SELECT * FROM foo');
let rows = pg.fetch();
console.log("Rows = " , rows );
return await pg.commit();
}
}
Commercial Support
You can buy commercial support from Sendanor.