questor
v1.0.1
Published
Promise based HTTP client inspired by clj-http
Downloads
20
Readme
questor
Promise based HTTP client inspired by clj-http
Usage
var questor = require('questor');
questor('https://github.com').then(function (res) {
// Request was successful
console.log(res.body); // Contains the response body
console.log(res.headers); // Contains the response headers
console.log(res.status); // Contains the response status code
}, function (err) {
// Request failed
console.log(err);
});
TODO
- Small resulting browserify bundle
- Streaming request and response bodies
- Types for requests, responses and errors