
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
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 0 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.