This packages is a wrapper around the request library. We are using bluebird for promisification.
npm install request bluebird request-bird
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) {
});
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) {
});