
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
async-each-series-throttle
Advanced tools
Iterate through items in series but throttle iteratee execution
Iterate through items in series but throttle iteratee execution
import eachSeriesThrottle from 'async-each-series-throttle'
const items = [0, 1, 2, 3, 4]
// Number in ms to throttle calls to iteratee
const wait = 1000
// Called only once every ~1000ms at minimum
const iteratee = (item, cb) => {
// Do some async work and callback when done
//
// If this takes _more than_ 1000ms then iteratee will be called again
// immediately after cb is called.
//
// If this takes _less than_ 1000ms then iteratee will be called again after
// ~1000ms have elapsed since the last time it was called.
setTimeout(() => cb(null, item + 1), 500)
}
// Optional callback after everything is done
const callback = (err, results) => {
// All done, after ~4000ms or more
// results is [1, 2, 3, 4, 5]
}
eachSeriesThrottle(items, iteratee, wait, callback)
FAQs
Iterate through items in series but throttle iteratee execution
The npm package async-each-series-throttle receives a total of 8 weekly downloads. As such, async-each-series-throttle popularity was classified as not popular.
We found that async-each-series-throttle 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.