stream-cache

0.0.2 • Public • Published

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);

Readme

Keywords

none

Package Sidebar

Install

npm i stream-cache

Weekly Downloads

37,591

Version

0.0.2

License

none

Last publish

Collaborators

  • felixge