1.0.0 • Published 11 years ago

qget v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
11 years ago

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);
});