progressbar-stream
v0.0.2
Published
Render an ascii-art progress bar for a stream of a known size.
Downloads
5
Readme
ProgressBar-Stream
Wrapper for progress and progress-stream
Render an ascii progress bar to display stream progress.
Installation
npm install progressbar-stream
Usage
var progress = require('progressbar-stream');
var input = fs.createReadStream('file.txt');
var length = fs.statSync('file.txt').size;
input.pipe(progress({total: length}).pipe(...);
Usage on Object Streams
var progress = require('progressbar-stream');
var inputs = [1, 2, 3, 4, 5, 6, 7];
from(inputs).pipe(progress({chunks: inputs.length})).pipe(...);