Skip to content

arypbatista/cloudant-promise

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Use Cloudant with promises

Resources

License

Stars

Watchers

Forks

Packages

No packages published