# pull-stream-to-stream

> turn a pull-stream into a regular node stream.

Latest version **2.0.0** (published 2019-10-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install pull-stream-to-stream
pnpm add pull-stream-to-stream
yarn add pull-stream-to-stream
bun add pull-stream-to-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 | 2.0.0 |
| Published | 2019-10-13 |
| First published | 2013-03-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 22.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Author | Dominic Tarr |
| Maintainers | dignifiedquire, dominictarr |

## Links

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

## Recent versions

- 2.0.0 (latest) — 2019-10-13
- 1.3.4 — 2017-03-27
- 1.3.3 — 2016-09-08
- 1.3.2 — 2016-09-05
- 1.3.1 — 2016-08-31
- 1.3.0 — 2014-08-19
- 1.2.6 — 2013-07-13
- 1.2.5 — 2013-06-05
- 1.2.4 — 2013-04-05
- 1.2.3 — 2013-04-05
- 1.2.2 — 2013-04-04
- 1.2.1 — 2013-04-04
- 1.2.0 — 2013-04-03
- 1.1.0 — 2013-03-28
- 1.0.0 — 2013-03-28

## README

# pull-stream-to-stream

turn a pull-stream into a regular node stream.

## example

``` js
var toStream = require('pull-stream-to-stream')

//if the pull-stream is duplex (an object with two streams: {source, sink})

stream = toStream(pullDuplex)

//if the stream is a sink ("writable")
stream = toStream.sink(pullSink)

//if the stream is a source ("readable")

stream = toStream.source(pullSource)

```


## License

MIT

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