1.0.2 • Published 9 years ago

stream-volume v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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