# pull-paramap

> parallel async map pull-stream

Latest version **1.2.2** (published 2017-04-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install pull-paramap
pnpm add pull-paramap
yarn add pull-paramap
bun add pull-paramap
```

## 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.2.2 |
| Published | 2017-04-15 |
| First published | 2013-07-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 10 |
| Author | Dominic Tarr |
| Maintainers | dominictarr |

## Links

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

## Dependencies (1)

- [looper](https://npm.io/package/looper.md) ^4.0.0

## Recent versions

- 1.2.2 (latest) — 2017-04-15
- 1.2.1 — 2016-11-11
- 1.2.0 — 2016-10-06
- 1.1.6 — 2016-04-24
- 1.1.4 — 2016-04-09
- 1.1.3 — 2015-07-02
- 1.1.2 — 2015-06-15
- 1.1.1 — 2014-08-26
- 1.1.0 — 2014-06-23
- 1.0.5 — 2014-02-25
- 1.0.4 — 2013-11-22
- 1.0.3 — 2013-11-14
- 1.0.2 — 2013-07-04
- 1.0.1 — 2013-07-02
- 1.0.0 — 2013-07-02

## README

# pull-paramap

parallel mapping pull-stream.

[![travis](https://travis-ci.org/dominictarr/pull-paramap.png?branch=master)
](https://travis-ci.org/dominictarr/pull-paramap)

[![testling](http://ci.testling.com/dominictarr/pull-paramap.png)
](http://ci.testling.com/dominictarr/pull-paramap)

## example

``` js
var pull = require('pull-stream')
var paramap = require('pull-paramap')

pull(
  pull.values([....]),
  //perform an async job in parallel,
  //but return results in the same order as they went in.
  paramap(function (data, cb) {
    asyncJob(data, cb)
  }, width), //optional number.
             //limits stream to process width items at once
  pull.collect(cb)
)

pull(
  pull.values([....]),
  //perform an async job in parallel,
  //and return results in the order they arrive
  paramap(function (data, cb) {
    asyncJob(data, cb)
  }, null, false), // optional flag `inOrder`, default true
  pull.collect(cb)
)
```

## License

MIT

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