# push-stream-to-pull-stream

> wrap a push-stream into a pull-stream, for source, sink, and duplex.

Latest version **1.0.5** (published 2021-07-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install push-stream-to-pull-stream
pnpm add push-stream-to-pull-stream
yarn add push-stream-to-pull-stream
bun add push-stream-to-pull-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.5 |
| Published | 2021-07-06 |
| First published | 2018-02-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 10.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | 'Dominic Tarr' |
| Maintainers | dominictarr, arj03 |

## Links

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

## Dependencies (2)

- [pull-looper](https://npm.io/package/pull-looper.md) ^1.0.0
- [push-stream](https://npm.io/package/push-stream.md) ^11.0.1

## Recent versions

- 1.0.5 (latest) — 2021-07-06
- 1.0.4 — 2021-05-05
- 1.0.3 — 2018-08-26
- 1.0.1 — 2018-02-18
- 1.0.0 — 2018-02-09

## README

# push-stream-to-pull-stream

wrap a push-stream into a pull-stream, for source, sink, and duplex.

``` js
var toPull = require('push-stream-to-pull-stream')
var Values = require('push-stream/values')

pull(
  toPull.source(new Values([1,2,3])),
  pull.drain(console.log)
)
```

generally, we follow the same api as [stream-to-pull-stream](github.com/pull-stream/stream-to-pull-stream)

## License

MIT

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