1.1.0 • Published 7 years ago

smooth-progress v1.1.0

Weekly downloads
15,390
License
ISC
Repository
github
Last release
7 years ago

pixel-by-pixel progress bar

demo

Usage

'use strict';
let https    = require('https');
let progress = require('smooth-progress');

https.get('https://raw.githubusercontent.com/dickeyxxx/smooth-progress/master/demo.gif', function (rsp) {
  let bar = progress({
    tmpl: 'Downloading... :bar :percent :eta',
    width: 25,
    total: parseInt(rsp.headers['content-length']),
  });
  rsp.on('data', (chunk) => bar.tick(chunk.length));
});