
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
blocking-promise-chain
Advanced tools
A chain of promises that blocks when a limit is reached. This is useful in an async function to keep an outstanding number of promises running (to keep target busy). See below for examples:
Say you have a loop that's doing some external IO:
async function worker() {
for (const data of allMyData) {
await request.post(serverUrl, data);
}
}
Nothing wrong here, except that the next post starts only when previous post is finished. To keep server fully busy, we should maintain a queue of outstanding requests. Using this module, code becomes:
import {BlockingPromiseChain} from 'blocking-promise-chain';
const MaxQueuedRequest = 10;
async function worker() {
let chain = new BlockingPromiseChain(MaxQueuedRequest);
for (const data of allMyData) {
await chain.add(request.post(serverUrl, data));
}
await chain.flush(); // ensure all outstanding requests are finished
}
Simple as that.
FAQs
blocking-promise-chain
We found that blocking-promise-chain 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.