restler-bluebird
v0.2.2
Published
Bluebird wrapper for restler, based on reslter-q by Andrew Newdigate
Downloads
21
Maintainers
Readme
restler-bluebird
Based on Andrew Newdigate reslter-q
Installing
npm install restler-bluebird --save
Using
The interface is similar to Restler's interface:
var rest = require('restler-bluebird');
rest.get('https://api.github.com/orgs/Troupe/repos')
.then(function(repos) {
assert(Array.isArray(repos));
})
.nodeify(done);
Running the tests
npm install
npm test