0.1.0 • Published 8 years ago

cloudant-promise v0.1.0

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
8 years ago

Cloudant-promise

last-release npm-version npm-license Build Status codecov.io npm-downloads

Use Cloudant with promises. Cloudant-promise binds together nano-promises and cloudant.

Installation

$ npm install cloudant-promise --save

Usage

const cloudant = require('cloudant-promise');

const credentials = {
  account  : '<account>',
  password : '<password>'
};

const db = cloudant(credentials).db.use('alice');

db.insert({ 'crazy': true }, 'rabbit')
  .then(body => console.log(body))
  .catch(err => console.error(err));

License

This library is licensed under Apache 2.0. Full license text is available in COPYING.