0.0.2 • Published 11 years ago
progressbar-stream v0.0.2
ProgressBar-Stream
Wrapper for progress and progress-stream
Render an ascii progress bar to display stream progress.
Installation
npm install progressbar-streamUsage
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(...);