# fscache-stream

> a passtrough stream caching buffer to file system

Latest version **0.1.2** (published 2014-04-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install fscache-stream
pnpm add fscache-stream
yarn add fscache-stream
bun add fscache-stream
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2014-04-28 |
| First published | 2014-04-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | popomore |
| Maintainers | popomore |

## Links

- npm: https://www.npmjs.com/package/fscache-stream
- Repository: https://github.com/popomore/fscache-stream
- Issues: https://github.com/popomore/fscache-stream/issues
- npm.io page: https://npm.io/package/fscache-stream

## Dependencies (2)

- [mkdirp](https://npm.io/package/mkdirp.md) ~0.4.0
- [through2](https://npm.io/package/through2.md) ~0.4.1

## Recent versions

- 0.1.2 (latest) — 2014-04-28
- 0.1.1 — 2014-04-28
- 0.1.0 — 2014-04-28

## README

# fscache-stream [![Build Status](https://travis-ci.org/popomore/fscache-stream.png?branch=master)](https://travis-ci.org/popomore/fscache-stream) [![Coverage Status](https://coveralls.io/repos/popomore/fscache-stream/badge.png?branch=master)](https://coveralls.io/r/popomore/fscache-stream?branch=master) 

A passtrough stream caching buffer to file system

---

## Install

```
$ npm install fscache-stream -g
```

## Usage

```
var http = require('http');
var fscache = require('fscache-stream');
var file = 'http://code.jquery.com/jquery-1.11.0.js';
http.get(file, function(req, res){
  req
  .pipe(fscache('jquery.js'))
  .pipe(process.stdout);
});
```

## LISENCE

Copyright (c) 2014 popomore. Licensed under the MIT license.

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