
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
fast-async-pool
Advanced tools
Run multiple promise-returning & async functions with limited concurrency with low overhead
similar to p-map or tiny-async-pool, fast-async-pool run async/promise returning functions with limited concurrency and low overhead.
$ npm install fast-async-pool
import asyncPool from 'fast-async-pool';
import fetch from 'cross-fetch';
const sites = [
'https://jestjs.io',
'https://github.com',
'https://www.npmjs.com',
'https://www.solidjs.com'
];
const pages = await asyncPool(2, sites, async site => {
const response = await fetch(site);
return response.text();
});
console.log(pages);
Returns a Promise that is fulfilled when all promises generated by mapping array to fn are fulfilled, or rejects if any of the promises reject. The fulfilled value is an Array of the fulfilled values returned from fn in array order.
concurrency limit
Type: number >= 1
Type: Array<Promise<unknown> | unknown>
Type: Function
Expected to return a Promise or value.
FAQs
Run multiple promise-returning & async functions with limited concurrency with low overhead
We found that fast-async-pool demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.