stream-cache

v0.0.2
A simple way to cache and replay readable streams.

node-stream-cache

A simple way to cache and replay readable streams.

Usage

var StreamCache = require('stream-cache');
var fs          = require('fs');

var cache = new StreamCache();
fs.createReadStream(__filename).pipe(cache);

// Cache can now be piped anywhere, even before the readable stream finishes.
cache.pipe(process.stdout);
npm i stream-cache

Metadata

  • Unknown
  • *
  • Felix Geisendörfer
  • released 4/27/2012

Downloads

Maintainers