Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 510 Bytes

readme.md

File metadata and controls

23 lines (17 loc) · 510 Bytes

Cache-Stream

Simple streaming module implementing the Stream2 interface for Node.js v0.10+

Install: $ npm i cache-stream

  var cacheStream = require('cache-stream')
    , cache = cacheStream();

  fs.createReadStream(path.join(__dirname, './my-file.txt')).pipe(cache);

from here you can do anything streamy you like:

  var through = new require('stream').Passthrough;
  cache.pipe(through);
  through.on('finish', function () {
    cache.pipe(process.stdout);
  });