
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.
@dyaa/async-retry
Advanced tools
We needed a utility that helps us to retry an async function on it's Failure/Rejection and to be able to control the number of retries and the time interval between each retry also to block the retries in case of some logic provided.
yarn add @dyaa/async-retry
Or if you prefer npm!
npm i @dyaa/async-retry
import asyncRetry from '@dyaa/async-retry';
asyncRetry
expects two parameters
Promise
.Options | Type | Optional? | Default | Description |
---|---|---|---|---|
retries | number | :heavy_check_mark: | 5retries | number of retries |
interval | number | :heavy_check_mark: | 5000ms | base interval between retries |
dontRetry | function | :heavy_check_mark: | () => false | A function that returns a boolean value. This boolean value is to check if we want the retry to continue or not |
onComplete | function | :heavy_check_mark: | null | A hook function that's called on the completion of the retry also provides (err, count) in params |
onFailure | function | :heavy_check_mark: | null | A hook function that's called on the failure of the retry also provides (err) in params |
onRetry | function | :heavy_check_mark: | null | A hook function that's called on every retry also provides (err, count) in params |
import asyncRetry from '@dyaa/async-retry';
const tryFetch = () => fetch('http://www.mocky.io/v2/5c59705d320000f31eba3880')
.then(res => {
if (res.status !== 200) {
return Promise.reject(new Error(`Rejected because of statusCode is ${res.status}`));
}
return res.json();
}).catch(e => Promise.reject(new Error(e)));
asyncRetry(tryFetch, {
retries: 3,
onRetry: (err, count) => console.log(`#### Retry #${count} with ${err}.`),
onComplete: count => console.log(`#### Completed after ${count} retries.`),
onFailure: err => console.log(`#### Failed because ${err}.`),
})
.then(response => {
console.log({response})
})
.catch(console.error);
FAQs
Async retry with hooks
The npm package @dyaa/async-retry receives a total of 2 weekly downloads. As such, @dyaa/async-retry popularity was classified as not popular.
We found that @dyaa/async-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
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.