# scalable-promise-all

> Scalable version of Promise.all

Latest version **1.0.0** (published 2019-11-21) · ISC license · 0 weekly downloads

## Install

```sh
npm install scalable-promise-all
pnpm add scalable-promise-all
yarn add scalable-promise-all
bun add scalable-promise-all
```

## 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 | 2019-11-21 |
| First published | 2019-11-21 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | andrey-raut |
| Maintainers | raut-andrey |
| Keywords | promise, all, mutable, async, js, javascript |

## Links

- npm: https://www.npmjs.com/package/scalable-promise-all
- Repository: https://github.com/raut-andrey/scalable-promise-all
- Issues: https://github.com/raut-andrey/scalable-promise-all/issues
- npm.io page: https://npm.io/package/scalable-promise-all

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 1.0.0 (latest) — 2019-11-21

## README

# scalable-promise-all
Mutable version of the `Promise.all`. You can mutate the provided array on the fly using this package. Use `push`, `pop`, `shift` or `splice` to mutate array of Promises.

## Installing
Using npm:
```shell
$ npm install scalable-promise-all
```

Using yarn:
```shell
$ yarn add scalable-promise-all
```

## Example
```js
import scalablePromiseAll from "scalable-promise-all";

const foo = async () => {
  await scalablePromiseAll(someArray);

  // Some code mutating someArray.
  // scalablePromiseAll function will wait for the end of all promises.
};

foo();

```

## License
ISC

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