micnews / redshift-sql

A module to get data in and out of AWS Redshift Cluster

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A module to get data in and out of AWS Redshift Cluster


Languages

Language:JavaScript 100.0%