Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@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
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.