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.
retry-if-fails
Advanced tools
This module helps to you to manage retries of function execution
// 1. Import module
const retrier = require('retry-if-fails');
// 2. Define your function
const flipCoin = () => {
return Math.random() > 0.5 ? 'Heads' : 'Tails';
}
// 3. Define your test function
const resultChecker = coinFlip => {
console.log(coinFlip);
return coinFlip === 'Heads'
}
// 4. Run the Retrier
const retries = 3;
retrier(flipCoin, resultChecker, retries)
.then( result => console.log(`Finally! ${result}`))
.catch( lastResult => console.log(`Error: Last result was: ${lastResult}`));
The retrier function returns a Promise, and it will execute until it hits the desired result or it' will return the last failed result.
You can also set a wait time between tries with the optional last parameter. This can be useful when your functions consume a remote resource.
const retries = 3;
const wait = 200; // 200 milliseconds
retrier(flipCoin, resultChecker, retries, wait);
const fetch = require('node-fetch');
const fetchResource = () => {
return fetch('http://comu.com', { timeout: 400 })
.catch(err => console.log(err));
}
const resultChecker = response => {
return response && response.status == 200;
}
const retries = 3;
const wait = 1000;
retrier(fetchResource, resultChecker, retries, wait)
.then( res => res.json())
.then( object => console.log(object))
.catch( lastResponse => console.log(`It fails. Last result was: ${lastResponse}`));
const foo = async () =>{
try{
const result = await retrier(process, checkCorrect, retries, wait);
console.log(`It's correct! ${result}`);
}
catch(lastResult){
console.log(console.log(`It fails. Last result was: ${lastResult}`))
}
};
FAQs
Utility module for retrying
The npm package retry-if-fails receives a total of 4 weekly downloads. As such, retry-if-fails popularity was classified as not popular.
We found that retry-if-fails 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
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.