Progress notification component with a clean slate to build off of.
$ component install component/progress-notification
- all the features of notification
var notify = require('progress-notification');
var progress = notify('Uploading maru.png');
var n = 0;
setInterval(function(){
progress.update(n++);
}, 50);
Notify with the given msg
and no title.
Notify with the given msg
and title
.
Update percentage to n
.
Update progress indicator size to n
.
MIT