Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@housinganywhere/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 @housinganywhere/async-retry
Or if you prefer npm!
npm i @housinganywhere/async-retry
import asyncRetry from '@housinganywhere/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 '@housinganywhere/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 @housinganywhere/async-retry receives a total of 4 weekly downloads. As such, @housinganywhere/async-retry popularity was classified as not popular.
We found that @housinganywhere/async-retry demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.