Socket
Book a DemoInstallSign in
Socket

@exiasr/egg-pg

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@exiasr/egg-pg

PostgreSQL plugin which supports pooling for egg

latest
Source
npmnpm
Version
2.0.0
Version published
Maintainers
1
Created
Source

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

Keywords

egg

FAQs

Package last updated on 01 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts