stream-counter

keeps track of how many bytes have been written to a stream

Usage no npm install needed!

<script type="module">
  import streamCounter from 'https://cdn.skypack.dev/stream-counter';
</script>

README

stream-counter

Keep track of how many bytes have been written to a stream.

Usage

var StreamCounter = require('stream-counter');
var counter = new StreamCounter();
counter.on('progress', function() {
  console.log("progress", counter.bytes);
});
fs.createReadStream('foo.txt').pipe(counter);