jeeng-pg

1.4.2 • Public • Published

jeeng-pg

A helper function to handle frequent postgres operations. Using 'node-postgres' package underneath the hood. Better suited for serverless functions

install

npm install --save jeeng-pg

Usage

  1. Import package:
const { DB } = require('jeeng-pg')
  1. Create a new db instance:
const db = new DB(<CONNECTION STRING>)
  1. Create the queries class:
const { GenericQueries } = require('jeeng-pg')

export const Queries extends GenericQueries {
    sampleQuery() {
        const q = 'SELECT 1 AS test_value'
        return this.DB.resolveQuery(q, ({rows}) => rows.length & rows[0].test_value)
    }
}
  1. Instiantiate queries class and execute:
const queries = new Queries(DB)
queries.sampleQuery()
    .then(...)
    .catch(...)

Package Sidebar

Install

npm i jeeng-pg

Weekly Downloads

0

Version

1.4.2

License

ISC

Unpacked Size

7.72 kB

Total Files

7

Last publish

Collaborators

  • outsidenote