qget

1.0.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i qget

Weekly Downloads

0

Version

1.0.0

License

none

Last publish

Collaborators

  • mmai