# reduplexer

> Another Stream2 duplexer

Latest version **1.1.0** (published 2014-12-01) · ISC license · 0 weekly downloads

## Install

```sh
npm install reduplexer
pnpm add reduplexer
yarn add reduplexer
bun add reduplexer
```

## 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.1.0 |
| Published | 2014-12-01 |
| First published | 2014-03-13 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 13 |
| Author | Matteo Collina |
| Maintainers | matteo.collina |
| Keywords | duplexer, streams, streams2, duplex, readable, writable |

## Links

- npm: https://www.npmjs.com/package/reduplexer
- Repository: https://github.com/mcollina/reduplexer
- Issues: http://github.com/mcollina/reduplexer/issues
- npm.io page: https://npm.io/package/reduplexer

## Dependencies (2)

- [inherits](https://npm.io/package/inherits.md) ^2.0.1
- [readable-stream](https://npm.io/package/readable-stream.md) ~1.0.26-2

## 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.1.0 (latest) — 2014-12-01
- 1.0.0 — 2014-10-15
- 0.0.7 — 2014-08-20
- 0.0.6 — 2014-07-30
- 0.0.5 — 2014-07-28
- 0.0.4 — 2014-07-28
- 0.0.3 — 2014-07-28
- 0.0.2 — 2014-03-13
- 0.0.1 — 2014-03-13

## README

# reduplexer(writable, readable, options)

[![build status][1]][2]

Takes a [`Writable`][5] stream and a [`Readable`][4] stream and makes them appear as a `Duplex` stream.
Heavily inspired by [duplexer](http://npm.im/duplexer) but using Stream2
with a bundled [readable-stream](http://npm.im/readable-stream).

It is assumed that the two streams are connected to each other in some way.

## Example

```js
var cp        = require('child_process')
  , duplexer  = require('reduplexer')
  , grep      = cp.exec('grep Stream')

duplexer(grep.stdin, grep.stdout, { objectMode: true })
```

## Installation

`npm install reduplexer --save`

## API

  * <a href="#reduplexer"><code><b>reduplexer()</b></code></a>
  * <a href="#hookWritable"><code>duplex.<b>hookWritable()</b></code></a>
  * <a href="#hookReadable"><code>duplex.<b>hookReadable()</b></code></a>
  * <a href="#hook"><code>duplex.<b>hook()</b></code></a>

-------------------------------------------------------
<a name="reduplexer"></a>
### reduplexer(writable, readable, options)

Create a [`Duplex`][3] stream based on `writable` and `readable` using
the given options.
`writable` and `readable` can be null, and in that case they can be
'hooked' later.

-------------------------------------------------------
<a name="hookWritable"></a>

### duplex.hookWritable(writable)

Hooks a `Writable` stream. It will throw if a `Writable` is already hooked.

-------------------------------------------------------
<a name="hookReadable"></a>
### duplex.hookReadable(writable)

Hooks a `Readable` stream. It will throw if a `Readable` stream is already hooked.

-------------------------------------------------------
<a name="hook"></a>
### duplex.hook(writable, readable)

Shortcut for:

```js
duplex.hookWritable(writable)
duplex.hookReadable(readable)
```

But it will not throw if any of the two are missing.

## Tests

`npm test`

## License

Copyright (c) 2014, Matteo Collina <hello@matteocollina.com>

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

  [1]: https://secure.travis-ci.org/mcollina/reduplexer.png
  [2]: https://travis-ci.org/mcollina/reduplexer
  [3]: http://nodejs.org/api/stream.html#stream_class_stream_duplex
  [4]: http://nodejs.org/api/stream.html#stream_class_stream_readable
  [5]: http://nodejs.org/api/stream.html#stream_class_stream_writable

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