Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
async-batch
Advanced tools
Asynchronously process task batches.
async-batch shines when you need to process several potentially taxing tasks in terms of computing resources. Some sample use cases:
The package exports a single function, asyncBatch
, which expects three parameters:
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
Asynchronously process task batches
The npm package async-batch receives a total of 2,895 weekly downloads. As such, async-batch popularity was classified as popular.
We found that async-batch 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.