parallel_dl
v1.0.2
Published
- Provides an easy to use api to paralelly download files from internet.
Downloads
4
Readme
Parallel downloader
- Provides an easy to use api to paralelly download files from internet.
Simple example:
let pd = new require('parallel_dl').ParallelDownloader();
pd.addUrl("https://tssoftware.eu/favicon.png", {outputFile: "ts_icon.png"});
pd.addUrl("https://tssoftware.eu/projects/pages/Img/lt.svg", {outputFile: "lt_logo.png"});
pd.downloadCLI(4 /*Max parallel downloads*/ ); //Downloads all the files (with CLI progressbars)