# identity-stream

> simple stream module that you can pass data through without modifying it

Latest version **1.0.1** (published 2014-10-31) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2014-10-31 |
| First published | 2014-10-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | gmturbo |
| Maintainers | gmturbo |
| Keywords | passthrough, identity, streams |

## Links

- npm: https://www.npmjs.com/package/identity-stream
- Repository: https://github.com/GMTurbo/IdentityStream
- Issues: https://github.com/GMTurbo/IdentityStream/issues
- npm.io page: https://npm.io/package/identity-stream

## Alternatives

- [byte-size](https://npm.io/package/byte-size.md) — 2.1M weekly downloads
- [speed-limiter](https://npm.io/package/speed-limiter.md) — 16.0K weekly downloads
- [@powersync/node](https://npm.io/package/@powersync/node.md) — 10.9K weekly downloads
- [@ledgerhq/coin-cardano](https://npm.io/package/@ledgerhq/coin-cardano.md) — 1.0K weekly downloads
- [@jayesol/jayeson.lib.streamfinder](https://npm.io/package/@jayesol/jayeson.lib.streamfinder.md) — 1.0K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2014-10-31
- 1.0.0 — 2014-10-31

## README

# IdentityStream
![alt-text](http://www.teacher-support-force.com/images/Identity.jpg)

Smash a file into chunks and put it back together!

```
  npm install identity-stream
```
## Why?

Sometimes you need a default stream placeholder that doesn't modify anything

## It is easy to use
``` js
var doSomethingStream = IsThereSomethingToDo() || new identityStream();
fs.createReadStream('file.txt')
  .pipe(doSomethingStream)
  .pipe(fs.createWriteStream('file-copy.txt');
```
## License

MIT

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