micnews / stream-volume

Measure the total volume of data a stream emits

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Measure the total volume of data a stream emits


Languages

Language:JavaScript 100.0%