0.0.5 • Published 7 years ago

request-bird v0.0.5

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

Promisified request

This packages is a wrapper around the request library. We are using bluebird for promisification.

Installation

npm install request bluebird request-bird

Usage

GET

If you just want a GET request you can do that in the following way:

var request = require('request-bird');

request('http://test.com')
  .then(function(response) {
    
  })
  .catch(function(err) {

  });

Or you can use the get function:

var request = require('request-bird');

request
  .get('http://test.com')
  .then(function(response) {
    
  })
  .catch(function(err) {

  });

POST

You can send data easier with this package because we added a parameter for that to the post, put, patch functions.

var request = require('request-bird');

request
  .post('http://test.com', {
    foo: 'bar'
  })
  .then(function(response) {
    
  })
  .catch(function(err) {

  });
0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago