
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
async-iterator-retry
Advanced tools
Retry async iteraotrs.
Like promise-retry but for async iterators, also based on retry.
const asyncIteratorRetry = require('async-iterator-retry')
const options = {
retries: 10, // The maximum amount of times to retry the operation. Default is 10.
factor: 2, // The exponential factor to use. Default is 2.
minTimeout: 1000, // The number of milliseconds before starting the first retry. Default is 1000.
maxTimeout: Infinity, // The maximum number of milliseconds between two retries. Default is Infinity.
randomize: false // Randomizes the timeouts by multiplying with a factor between 1 to 2. Default is false.
}
const iteratorWithRetry = asyncIteratorRetry(async function * (retry, attempt) {
if (attempt > 1) {
console.log(`Retrying, attempt ${attempt}...`)
}
const iterator = getSomeIterator()
try {
yield * iterator
} catch (err) {
if (err.code === 'ETIMEDOUT') {
yield * retry(err)
}
throw err
}
}, options)
for await const (item of myIteratorWithRetry) {
console.log(item)
}
FAQs
Retry async iterators.
The npm package async-iterator-retry receives a total of 6 weekly downloads. As such, async-iterator-retry popularity was classified as not popular.
We found that async-iterator-retry 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.