parallel-wget

0.1.0 • Public • Published

parallel-wget

Install

npm install -g git://github.com/chbrown/parallel-wget.git

Use

First, customize the url transform function:

var wget = require('parallel-wget');
wget.url2Filename = function(urlStr) {
  return urlStr.replace(/\//g, '-');
}
 
wget.downloadUrls('.', 50, urls_array, function() {
  logger.info('Done');
});

Or use from the command line like:

<allurls.txt parallel-wget -d tmp --concurrency 50

License

Copyright © 2011–2013 Christopher Brown. MIT Licensed.

Dependencies (4)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i parallel-wget

    Weekly Downloads

    0

    Version

    0.1.0

    License

    MIT

    Last publish

    Collaborators

    • chbrown