0.0.1 • Published 13 years ago
task-progress v0.0.1
task-progress
Shows native OS task progress for node apps (wherever supported).
Could be used for downloaders, load indicators or any kind of metrics.
Installing
$ npm install task-progressUsing
Just one function, progress(n) where n is a number in the range 0-100.
It removes itself when passed anything outside that range.
var progress = require('task-progress')
process.title = 'My app'
progress(15) // changes title to: `{15%} My app`
progress(100) // resets title back to: `My app`License
MIT
0.0.1
13 years ago