Package Exports
- requestify
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (requestify) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Requestify - Simplifies node HTTP request making. 
Requestify is a super easy to use and extendable HTTP client for nodeJS.
Installation
npm install requestify How to use?
Requestify is extremely easy to use and always return a promise (using the amazing Q module)...
Simply require the module and start requesting:
var requestify = require('requestify'); GET Request:
requestify.get('http://example.com').then(function(response) {
// Get the response body
response.getBody();
});POST Request in JSON:
requestify.post('http://example.com', {
hello: 'world'
})
.then(function(response) {
// Get the response body
response.getBody();
});API Reference
options
method {string}
HTTP method to use, can be any valid HTTP method (e.g. POST, GET, DELETE, HEAD, PUT, etc.).
body {object|string}
Can be either an object (key, val) or a string, will be formatted depending on the dataType property and served via response body.
headers {object}
(key, value) object of headers (some headers like content-length are set by default)
cookies {object}
(key, value) object of cookies to encode and serve via the request header.
auth {{ username: string, password: string }}
Adds Basic authintication header with given username and password
dataType {string}
Determines the request data type (json|form-url-encoded), this option will encode the request body according to the given dataType and will add the appropriate header (defaults to json).
If null will be given, the body will be served as string.
timeout {number}
Set a timeout (in milliseconds) for the request.
requestify.request(url, options)
Executes a custom request according to options object
requestify.request('https://example.com/api/foo', {
method: 'POST',
body: {
foo: 'bar'
bar: 'foo'
},
headers: {
'X-Forwarded-By': 'me'
},
cookies: {
mySession: 'some cookie value'
},
auth: {
username: 'foo',
password: 'bar'
},
dataType: 'json'
})
.then(function(response) {
// get the response body
response.getBody();
// get the response headers
response.getHeaders();
// get specific response header
response.getHeader('Accept');
// get the code
response.getCode();
});requestify.get(url, options)
Exceutes a GET method request
requestify.get('http://example.com').then(function(response) {
// Get the response body
response.getBody();
});requestify.post(url, options)
Exceutes a POST method request
requestify.post('http://example.com', {
body: {
hello: 'world'
}
})
.then(function(response) {
// Get the response body
response.getBody();
});requestify.put(url, options)
Exceutes a PUT method request
requestify.put('http://example.com', {
body: 'some file content',
dataType: null
})
.then(function(response) {
// Get the response body
response.getBody();
});requestify.delete(url, options)
Exceutes a DELETE method request
requestify.delete('http://example.com').then(function(response) {
// Get the response body
response.getBody();
});requestify.head(url, options)
Exceutes a HEAD method request
requestify.head('http://example.com').then(function(response) {
// Get the response code
response.getCode();
});Running Tests
To run the test suite first install the development dependencies:
$ npm install Then run the tests:
$ npm testLicense
The MIT License (MIT)
Copyright (c) 2013 Ran Mizrahi <ranm@codeoasis.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.