# stream-combiner

> [![npm version](https://img.shields.io/npm/v/stream-combiner.svg)](https://npmjs.org/package/stream-combiner) [![Travis CI](https://travis-ci.org/dominictarr/stream-combiner.svg)](https://travis-ci.org/dominictarr/stream-combiner)

Latest version **0.2.2** (published 2015-06-05) · MIT license · 0 weekly downloads

## Install

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

## 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.2.2 |
| Published | 2015-06-05 |
| First published | 2012-11-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 100 |
| Author | 'Dominic Tarr' |
| Maintainers | dominictarr |

## Links

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

## Dependencies (2)

- [through](https://npm.io/package/through.md) ~2.3.4
- [duplexer](https://npm.io/package/duplexer.md) ~0.1.1

## Recent versions

- 0.2.2 (latest) — 2015-06-05
- 0.2.1 — 2014-05-29
- 0.2.0 — 2014-05-18
- 0.1.0 — 2014-05-09
- 0.0.4 — 2013-12-11
- 0.0.2 — 2013-03-18
- 0.0.1 — 2013-01-31
- 0.0.0 — 2012-11-27

## README

# stream-combiner

[![npm version](https://img.shields.io/npm/v/stream-combiner.svg)](https://npmjs.org/package/stream-combiner) 
[![Travis CI](https://travis-ci.org/dominictarr/stream-combiner.svg)](https://travis-ci.org/dominictarr/stream-combiner)

## Combine (stream1,...,streamN)

Turn a pipeline into a single stream. `Combine` returns a stream that writes to the first stream
and reads from the last stream. 

Listening for 'error' will recieve errors from all streams inside the pipe.

```js
var Combine = require('stream-combiner')
var es      = require('event-stream')

Combine(                                  // connect streams together with `pipe`
  process.openStdin(),                    // open stdin
  es.split(),                             // split stream to break on newlines
  es.map(function (data, callback) {      // turn this async function into a stream
    var repr = util.inspect(JSON.parse(data))  // render it nicely
    callback(null, repr)
  }),
  process.stdout                          // pipe it to stdout !
)
```

Can also be called with an array:

```js
var combinedStream = Combine([
  stream1,
  stream2,
]);
```

Or to combine gulp plugins:

```js
function coffeePipe() {
  return Combine(
    coffeescript(),
    coffeelint.reporter('fail').on('error', function(){
      gutil.beep()
      gulp.run('lint')
    })
}

//usage:
gulp.src().pipe(coffeePipe());
```

## License

MIT

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