# stream-cat

> Concatenate streams, the simple way

Latest version **1.1.1** (published 2014-10-15) · MIT license · 0 weekly downloads

## Install

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

## 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.1 |
| Published | 2014-10-15 |
| First published | 2014-10-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 12 |
| Maintainers | juliangruber |

## Links

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

## Dependencies (1)

- [read-only-stream](https://npm.io/package/read-only-stream.md) ^1.1.1

## Recent versions

- 1.1.1 (latest) — 2014-10-15
- 1.1.0 — 2014-10-15
- 1.0.0 — 2014-10-14

## README

# stream-cat

  Concatenate streams, the simple way.

  [![build status](https://secure.travis-ci.org/micnews/stream-cat.svg)](http://travis-ci.org/micnews/stream-cat)

  [![testling badge](https://ci.testling.com/micnews/stream-cat.png)](https://ci.testling.com/micnews/stream-cat)

## Example

```js
var cat = require('stream-cat');

cat([abcStream(), defStream()]).pipe(process.stdout);

// outputs:
a b c d e f
```

## Installation

```bash
$ npm install stream-cat
```

## API

### cat(streams)

  Given an array of `streams`, drain one after another completely and stream the results. Returns a readable stream. Errors are forwarded.

  Just like `cat streamA streamB`.

## License

  MIT

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