redshift-sql

1.0.2 • Public • Published

redshift-sql

A very light node-postgres wrapper for running AWS Redshift queries.

Installation

Download node at nodejs.org and install it, if you haven't already.

npm install redshift-sql --save

Usage

var config = {
  host: 'rs-cluster.us-east-1.redshift.amazonaws.com',
  db: 'dev',
  user: 'rsadmin',
  password: 'rsPassword'
};
var rssql = require('redshift-sql')(config);
var query = 'select * from myTable limit 10';
 
rssql(query, function cb(err, result) {
  if (err) {
    return console.error(err);
  }
  // do stuff
});
 

Tests

npm install
npm test

Dependencies

  • pg: PostgreSQL client - pure javascript & libpq with the same API

Dev Dependencies

License

ISC

Generated by package-json-to-readme

Readme

Keywords

none

Package Sidebar

Install

npm i redshift-sql

Weekly Downloads

75

Version

1.0.2

License

ISC

Last publish

Collaborators

  • stankud