/stream-volume

Measure the total volume of data a stream emits

Primary LanguageJavaScript

stream-volume

Measure the total volume of data a stream emits.

build status

Example

var Volume = require('stream-volume');

src
.pipe(Volume(function(vol){
  console.log('Volume in bytes: %s', vol);
}))
.pipe(dest);

Installation

$ npm install stream-volume

API

Volume(cb)

Create a Transform stream that passes through all data and calls cb with the total volume in bytes.

License

MIT