Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
concurrent-tasks
Advanced tools
A simple task runner which will run tasks concurrently while maintaining limits.
A simple task runner which will run all tasks till completion, while maintaining concurrency limits.
Read the full documentation at the website
Concurrent Tasks mimics a queue by using JavaScript's inbuilt array data type. Each task is a function which signals completion back to the runner.
The minimalism of Concurrent Tasks makes it an easy-to-use solution across any framework or flavour of JavaScript. It has ZERO dependencies and can be used virtually in any scenario. With a minified and gzipped size of 2.7kB, it is the ultimate lightweight tool for your concurrency needs.
# NPM
npm i concurrent-tasks
# Yarn
yarn add concurrent-tasks
# PNPM
pnpm i concurrent-tasks
<script
src="https://cdn.jsdelivr.net/npm/concurrent-tasks/umd/concurrent-tasks.min.js"
type="text/javascript"
></script>
bun install concurrent-tasks
import { TaskRunner } from "https://cdn.jsdelivr.net/npm/concurrent-tasks/src/index.ts";
Important: Each task passed to the task runner, necessarily has to call the done function. If not, your queue won't process properly.
import TaskRunner from "concurrent-tasks";
const runner = new TaskRunner();
function generateTasks() {
const tasks = [];
let count = 1000;
while (count) {
tasks.push((done) => {
setTimeout(() => {
done();
}, Math.random() * 1000);
});
count--;
}
return tasks;
}
runner.addMultiple(generateTasks());
runner.start();
FAQs
A simple task runner which will run tasks concurrently while maintaining limits.
The npm package concurrent-tasks receives a total of 1,502 weekly downloads. As such, concurrent-tasks popularity was classified as popular.
We found that concurrent-tasks demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.