0.1.0 • Published 11 years ago

parallel-wget v0.1.0

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

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.