wget.js
v0.0.6
Published
Node.js wget-like alternative
Downloads
19
Maintainers
Readme
wget.js
Node.js wget-like alternative
Command line
Usage: wget.js [options] <url>
Options:
--np, --no-parent don't ascend to the parent directory [boolean] [default: false]
-r, --recursive specify recursive download [boolean] [default: false]
-P, --directory-prefix save files to PREFIX/... [string] [default: ""]
-M, --process-module javascript module handling the contents
--process javascript function handling the contents (overriden by -M)
-h, --help Show help [boolean]
Examples:
wget.js http://www.yahoo.com fetch the site content
Module use
var wget = require('wget.js');
wget("http://www.yahoo.com", {_: [], acceptHref: _ => _, process: _ => _});