Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

async-batch

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-batch

Asynchronously process task batches

  • 1.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.9K
decreased by-33.48%
Maintainers
1
Weekly downloads
 
Created
Source

async-batch

Build Status

Asynchronously process task batches.

Usage

async-batch shines when you need to process several potentially taxing tasks in terms of computing resources. Some sample use cases:

  • Automated calls to a rate-limited API.
  • I/O heavy operations.
  • Throttling calls to a service running on devices with a small amount of computing resources.

The package exports a single function, asyncBatch, which expects three parameters:

  • A list of tasks. Tasks can be anything (numbers, objects, lists, etc.)
  • A handler function to run the tasks.
  • The number of concurrent workers to run tasks on.

The following code snippet showcases how to use it:

import asyncBatch from "async-batch";

async function squares() {
  const input = [10, 2, 3, 8, 1, 7, 4];
  const processingOrder: number[] = [];

  const result = await asyncBatch(
    input,
    (task: number, taskIndex: number, workerIndex: number) => new Promise(
      (resolve) => setTimeout(
        () => processingOrder.push(task) && resolve(task * task),
        task * 25,
      ),
    ),
    2,
  );

  console.log(processingOrder);   // [  2,  3, 10,  1,  8,  4,  7];
  console.log(result);            // [100,  4,  9, 64,  1, 49, 16];

  return result;
}

squares();

asyncBatch returns a Promise that resolves with the results of all tasks once all of them have been processed.

Tasks in the input list are grabbed in order, however, since each task can take different times to complete, the completion order is not guaranteed to be ordered in any way. Despite of this, the results list returned once asyncBatch resolves is guaranteed to preserve the order of the elements in a way that the result of processing the task at index X will always be found at index X in the results list.

FAQs

Package last updated on 17 Nov 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc