2.0.0 • Published 4 years ago

@exiasr/egg-pg v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

egg-pg

dependencies Status

PostgreSQL plugin which supports pooling for egg.

This plugin exposes the Pool object from node-postgres at app.pg.

Latest version of node-postgres: 7.10.0

Install

npm i @exiasr/egg-pg

yarn add @exiasr/egg-pg

Configuration

Enable plugin

// {app_root}/config/plugin.js
exports.pg = {
  enable: true,
  package: '@exiasr/egg-pg',
};

Sample

// {app_root}/config/config.default.js
exports.pg = {
  user: 'root',
  host: 'localhost',
  database: 'compose',
  password: 'supersecure',
  port: '27017',
};

Single database instance

// {app_root}/config/config.default.js
exports.pg = {
  connectionString: 'postgres://<user>:<password>@<host>:<port>/<database>',
}

Multiple database instance

// {app_root}/config/config.default.js
exports.pg = {
  clients: {
    client1: {
      connectionString: 'postgres://root:supersecure@localhost:27017/compose',
    },
    client2: {
      connectionString: 'postgres://root:supersecure@localhost:27018/compose',
    },
  },
};

see config/config.default.js for more detail.

Usage

Single database instance

const { app } = this;
const pool = app.pg;
const { rows } = await pool.query('SELECT NOW()');

Multiple database instance

const { app } = this;
const pool = app.pg.get('<client_name>');
const { rows } = await pool.query('SELECT NOW()');

License

MIT

2.0.0

4 years ago

1.1.0

5 years ago

1.1.0-alpha.1

5 years ago

1.0.5

5 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.0

6 years ago

1.0.1

6 years ago