filedownloader
Version:
a small module for easy downloading using the power of curl combined with node js
24 lines (20 loc) • 530 B
JavaScript
var Downloader = require("./");
var Dl = new Downloader({
url: "http://quotesofboss.com/boss/b5ul8tby0s8-seth-doyle.jpg",
saveto: "Downloads",
deleteIfExists: true
}).on("start", function (){
console.log("Download Started");
}).on("error", function(err){
console.log(err)
}).on("progress", function(data){
console.log(data)
}).on("end", function(){
console.log("Download Finished");
});
setTimeout(() => {
Dl.pause()
}, 5000);
setTimeout(() => {
Dl.resume()
}, 8000);