0.0.2 • Published 7 years ago
batch-download v0.0.2
batch-download
Batch Download
A small library to schedule batch file download with patterns
Installation
npm install batch-download
Usage Example
var bd = require('batch-download');
var options = {
address: 'www.example.com/*.jpg',
fileName: '*.jpg',
from: 1,
to: 5,
directory: './data',
retry: 3,
}
bd(options, function(){})
Tests
npm test