0.1.0 • Published 10 years ago

cache-stream v0.1.0

Weekly downloads
-
License
-
Repository
-
Last release
10 years ago

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