1.0.0 • Published 11 years ago
qget v1.0.0
qget
A simple wget utility, compatible with q promises.
Usage
var qget = require('qget');
var url = {host: 'bourcereau.fr', path: '/'};
//With a callback
qget(url, function(res){
console.log(res);
});
//With a promise
qget(url)
.then(function(res){
console.log(res);
});
1.0.0
11 years ago