
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
concurrency-master
Advanced tools
The Concurrency Master is a lightweight promise-based task scheduler. Initialize it with a concurrency value, then call its add
method on functions that return Promises. The ConcurrencyMaster will execute all the given promise-returning functions. In doing so, it will make sure that no more than its given concurrency are running in parallel.
The wait()
method returns a Promise that resolves when all of the ConcurrencyMaster's add
ed Promises have resolved.
var ConcurrencyMaster = require('concurrency-master');
function waitOneSecondAndLog() {
return new Promise((resolve, reject) => {
setTimeout(() => {
console.log('Hey!');
resolve();
}, 1000);
});
}
var concurrencyMaster = new ConcurrencyMaster(2);
concurrencyMaster.add(waitOneSecondAndLog);
concurrencyMaster.add(waitOneSecondAndLog);
concurrencyMaster.add(waitOneSecondAndLog);
concurrencyMaster.wait().then(() => {
console.log('all done!');
});
The ConcurrencyMaster in this example has a concurrency of 2, so after one second, you'll see two Hey!
messages. After another second, you'll see the third Hey!
message, then all done!
. Sweet!
FAQs
a promise concurrency manager
The npm package concurrency-master receives a total of 0 weekly downloads. As such, concurrency-master popularity was classified as not popular.
We found that concurrency-master demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.