# parallel-io

> Very simple utility to make Node source code with parallel IO operations look better

Latest version **1.0.0** (published 2014-10-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install parallel-io
pnpm add parallel-io
yarn add parallel-io
bun add parallel-io
```

## 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.0 |
| Published | 2014-10-28 |
| First published | 2014-10-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Konstantins Onufrijevs |
| Maintainers | koonuf |
| Keywords | parallel, io |

## Links

- npm: https://www.npmjs.com/package/parallel-io
- Repository: https://github.com/koonuf/parallel-io
- Issues: https://github.com/koonuf/parallel-io/issues
- npm.io page: https://npm.io/package/parallel-io

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2014-10-28

## README

parallel-io
===========

Very simple utility to make Node source code with parallel IO operations look better

```js
var groupCreator = require('parallel-io');
var fs = require('fs');

var group = groupCreator();

fs.readFile('./text1.txt', group.wrap('op1', function (err, data) {
    return data.toString();
}));

fs.readFile('./text2.txt', group.wrap('op2', function (err, data) {
    return data.toString();
}));

group.onAllDone(function (results) { 
    results['op1'] === "file 1 contents";
    results['op2'] === "file 2 contents";
});
```

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