New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

fast-async-pool

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-async-pool

Run multiple promise-returning & async functions with limited concurrency with low overhead

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

fast-async-pool

similar to p-map or tiny-async-pool, fast-async-pool run async/promise returning functions with limited concurrency and low overhead.

Install

$ npm install fast-async-pool

Usage

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);

API

asyncPool(limit, array, fn)

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.

limit

concurrency limit

Type: number >= 1

array

Type: Array<Promise<unknown> | unknown>

fn(element, index, array)

Type: Function

Expected to return a Promise or value.

Keywords

race

FAQs

Package last updated on 17 Dec 2022

Did you know?

Socket

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.

Install

Related posts