jeeng-redis

1.4.0 • 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-redis

Weekly Downloads

9

Version

1.4.0

License

ISC

Unpacked Size

5.81 kB

Total Files

6

Last publish

Collaborators

  • outsidenote