0.10.0 • Published 10 years ago
requesty v0.10.0
requesty
promise based http and https requests, in node and in browser
Getting Started
Install the module with: npm install requesty --save
var requesty = require('requesty');
requesty('http://httpbin.org/html').then(function (res) {
expect(res.data.indexOf("Herman Melville - Moby-Dick")).to.be.greaterThan(10);
}).then(null, function (err) {
console.log("%s\n%s", err.message, err.stack);
});
Other stuff
- documentation - maybe I will add documentation if you ask it. open an issue for this.
- support - open an issue here.
License
MIT © 2014, Andrea Parodi