Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

cache-stream

sonewman5BSD0.1.0

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

readme

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