# @achingbrain/stream-cache

> A simple way to cache and replay readable streams.

Latest version **0.0.1** (published 2018-02-19) · 0 weekly downloads

## Install

```sh
npm install @achingbrain/stream-cache
pnpm add @achingbrain/stream-cache
yarn add @achingbrain/stream-cache
bun add @achingbrain/stream-cache
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2018-02-19 |
| First published | 2018-02-19 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | * |
| Dependencies | 0 |
| Unpacked size | 353.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 44 |
| Author | Felix Geisendörfer |
| Maintainers | achingbrain |

## Links

- npm: https://www.npmjs.com/package/@achingbrain/stream-cache
- Repository: https://github.com/felixge/node-stream-cache
- Issues: https://github.com/felixge/node-stream-cache/issues
- npm.io page: https://npm.io/package/@achingbrain/stream-cache

## Recent versions

- 0.0.1 (latest) — 2018-02-19

## 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);
```

---
_Source: https://npm.io/package/@achingbrain/stream-cache · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
