progressbar-stream

0.0.2 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i progressbar-stream

Weekly Downloads

0

Version

0.0.2

License

Apache 2.0

Last publish

Collaborators

  • willscott