0.0.2 • Published 9 years ago

progressbar-stream v0.0.2

Weekly downloads
2
License
Apache 2.0
Repository
github
Last release
9 years ago

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(...);