1.0.3 • Published 9 years ago

superbird v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

Superbird

superagent + bluebird = superbird :: Promisified superanget for the greater good.

Why

There's a plenty of ways to integrate superagent and bluebird, this is just one of them. It has a better API, by making .end() return a promise.

Usage

Install it

npm install --save superbird

Just like superagent, but promesified:

var request = require('superbird')

request
  .post('/api/pet')
  .send({ name: 'Manny', species: 'cat' })
  .set('X-API-Key', 'foobar')
  .set('Accept', 'application/json')
  .end()
  .then((res) => {
  	// do what you want with my res.body
  })

License

MIT

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago