Node.js package (v0.0.2, unmaintained since 2012) that provides a simple way to cache readable streams, allowing replay and piping even before the source stream finishes. It buffers stream data and exposes a readable stream interface. Not recommended for production; consider alternatives like readable-stream or custom implementations.
npm install stream-cacheNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a stream cache that buffers the content of a file and replays it to stdout.
Use a maintained alternative like readable-stream-cache or implement your own using PassThrough.
Use with streams that are small or implement a streaming cache that limits buffer size.
Consider using Node's built-in PassThrough with objectMode: true for simple replay.
Run `npm install stream-cache` and ensure import path is correct.
Use `const StreamCache = require('stream-cache');` in CommonJS files.No dependency data recorded yet.