• Stars
    star
    667
  • Rank 67,625 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Run multiple promise-returning & async functions with limited concurrency using native ES6/ES7

asyncPool

Why?

The goal of this library is to use native async iterator (ES9), native async functions and native Promise to implement the concurrency behavior (look our source code).

If you need ES6 as baseline, please use our version 1.x.

What?

asyncPool runs multiple promise-returning & async functions in a limited concurrency pool. It rejects immediately as soon as one of the promises rejects. It calls the iterator function as soon as possible (under concurrency limit). It returns an async iterator that yields as soon as a promise completes (under concurrency limit). For example:

const timeout = ms => new Promise(resolve => setTimeout(() => resolve(ms), ms));

for await (const ms of asyncPool(2, [1000, 5000, 3000, 2000], timeout)) {
  console.log(ms);
}
// Call iterator timeout(1000)
// Call iterator timeout(5000)
// Concurrency limit of 2 reached, wait for the quicker one to complete...
// 1000 finishes
// for await...of outputs "1000"
// Call iterator timeout(3000)
// Concurrency limit of 2 reached, wait for the quicker one to complete...
// 3000 finishes
// for await...of outputs "3000"
// Call iterator timeout(2000)
// Itaration is complete, wait until running ones complete...
// 5000 finishes
// for await...of outputs "5000"
// 2000 finishes
// for await...of outputs "2000"

Usage

$ npm install tiny-async-pool
import asyncPool from "tiny-async-pool";

ES9 for await...of

for await (const value of asyncPool(concurrency, iterable, iteratorFn)) {
  ...
}

Migrating from 1.x

The main difference: 1.x API waits until all of the promises completes, then all results are returned (example below). The new API (thanks to async iteration) let each result be returned as soon as it completes (example above).

You may prefer to keep the 1.x style syntax, instead of the for await iteration method in 2.x. Define a function like below to wrap asyncPool, and this function will allow you to upgrade to 2.x without having to heavily modify your existing code.

async function asyncPoolAll(...args) {
  const results = [];
  for await (const result of asyncPool(...args)) {
    results.push(result);
  }
  return results;
}

// ES7 API style available on our previous 1.x version
const results = await asyncPoolAll(concurrency, iterable, iteratorFn);

// ES6 API style available on our previous 1.x version
return asyncPoolAll(2, [1000, 5000, 3000, 2000], timeout).then(results => {...});

API

asyncPool(concurrency, iterable, iteratorFn)

Runs multiple promise-returning & async functions in a limited concurrency pool. It rejects immediately as soon as one of the promises rejects. It calls the iterator function as soon as possible (under concurrency limit). It returns an async iterator that yields as soon as a promise completes (under concurrency limit).

concurrency

The concurrency limit number (>= 1).

iterable

An input iterable object, such as String, Array, TypedArray, Map, and Set.

iteratorFn

Iterator function that takes two arguments: the value of each iteration and the iterable object itself. The iterator function should either return a promise or be an async function.

License

MIT Β© Rafael Xavier de Souza

More Repositories

1

cldrjs

Simple CLDR traverser
JavaScript
157
star
2

javascript-globalization

The globalization (internationalization and localization) farm of the JavaScript community.
66
star
3

relative-time

Formats JavaScript dates to relative time strings (e.g., "3 hours ago")
JavaScript
47
star
4

cldr-data-npm

Npm module for Unicode CLDR JSON data
JavaScript
42
star
5

globalize-webpack-plugin

Globalize.js webpack plugin
JavaScript
33
star
6

iana-tz-data

Unofficial JSON distribution of zdumped IANA timezone data.
JavaScript
27
star
7

cldr-data-downloader

Download tool for Unicode CLDR JSON data
JavaScript
16
star
8

camelcase-keys-deep

JavaScript
14
star
9

react-inview

React Component that triggers an event when inview
JavaScript
12
star
10

push-to-deploy

Node.js server that responds to github webhook post-receive events for easy push-to-deploy
JavaScript
11
star
11

decamelize-keys-deep

JavaScript
7
star
12

cldr-data-bower

(DEPRECATED, use npm instead) Bower module for Unicode CLDR JSON data
5
star
13

codeeval

Ruby
5
star
14

react-globalize-compiler

I18n support for React applications using Globalize
JavaScript
5
star
15

cldr-data-full-npm

Npm module for Unicode CLDR JSON data
JavaScript
4
star
16

ecma402-fix-lookup-matcher

Ecma-402 proposal for fixing its LookupMatcher algorithm (9.2.2 and 9.2.3)
3
star
17

react-globalize-webpack-plugin

react-globalize webpack plugin
JavaScript
3
star
18

jquery.more

More is a jQuery plugin that makes paging or infinite scrolling easier
JavaScript
3
star
19

ecma402-number-format-round-option

Ecma-402 proposal for selecting different rounding functions for Intl.NumberFormat
3
star
20

JavascriptMVC-Util

JavascriptMCV util plugins
JavaScript
2
star
21

react-date-input

Date Input UI component for React optimized for i18n and a11y
JavaScript
2
star
22

skip-amd-webpack-plugin

Skip AMD defines webpack plugin
JavaScript
2
star
23

temporal-luxon

Temporal API (using luxon under the hoods)
JavaScript
2
star
24

zoned-date-time

A tiny JavaScript Date library with full IANA timezone support
JavaScript
1
star
25

hipster

Node.js proxy to Hipster
JavaScript
1
star
26

canjs-hello-world

How to organize your CanJS project using bower to manage external dependencies
JavaScript
1
star
27

facebook

Facebook library made a little easier
JavaScript
1
star
28

disqus-helper

DISQUS client side helper
JavaScript
1
star
29

canjs_bem

CanJS β™₯ BEM methodologies
JavaScript
1
star