# node-stream-cache **Repository Path**: mirrors_stephenplusplus/node-stream-cache ## Basic Information - **Project Name**: node-stream-cache - **Description**: A simple way to cache and replay readable streams. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # node-stream-cache A simple way to cache and replay readable streams. ## Usage ```js 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); ```