0.0.4 • Published 8 years ago

node-dl v0.0.4

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

#node-dl

node-dl is a simple file downloader with resuming support.

var Download = require("node-dl")

var dl = new Download({url:"..."})
	.on("start",function () {
		console.log("start");
	})
	.on("progress",function(){
		console.log(((100 / this.size.estimated) * this.size.downloaded).toFixed(0) + "%")
	})
	.on("end",function () {
		console.log("end" + this.file);
	})
	.start()

setTimeout(function () {
	dl.abort()
}, 5000)
0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago