npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@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 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 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.