
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
retry-wrapper
Advanced tools
Easily add retry logic to any function returning a Promise.
I was tired of making custom made spaghetti retry logic when I occasionally needed it.
$ npm install -S retry-wrapper
// var retryWrapper = require(retry-wrapper).retryWrapper;
import { retryWrapper } from 'retry-wrapper';
let withRetryLogic = retryWrapper(4, myAsyncFunction);
withRetryLogic('https://unstable.com/api/findSomething?thing=something')
.then(r => {
//..Do something with result
})
.catch(e => {
// Retry 4 times was not enough,
// do something with the error
});
If my function doesn't return a Promise, am I doomed to live a life in callback hell making spaghetti code?
Fear not, you can use this.
import { retryWrapper } from 'retry-wrapper';
let retry = {};
function simulateRequest(req) {
// --- To log retries ---
retry[req] = retry[req] || 0;
// ----------------------
return new Promise((resolve, reject) => {
var random = Math.floor(Math.random() * 10);
// ---------------------------
setTimeout(() => {
retry[req]++;
if (random < 7) {
return reject(`${req}, failed at try ${retry[req]}`);
}
return resolve(req);
}, random);
});
}
let retryWrapped = retryWrapper(4, simulateRequest);
let promises = [];
for (let i = 0, l = 100; i < l; i++) {
//
promises.push(retryWrapped(i)
.then(result => ({ error: null, result }))
// Catch so Promise.all(promises) isn't rejected if
// retry fails.
.catch(error => ({ error, result: null })));
}
function doSomething(r) {
console.log(r);
return r;
}
Promise.all(promises)
.then(res => res
.map(r => doSomething(r)));
import { retryWrapper } from 'retry-wrapper';
let tryCallBack = (error, tried, lapsed, resolve, reject, retry) => {
if (tried > 100) {
//
return reject({ error: { original: error, custom: "maxTries" } });
// or resolve(error) if you hate to catch
}
if (lapsed > (1000 * 60 * 60)) {
// Retried more than one hour, so take a break
return reject({ error: { original: error, custom: "lapsed" } });
}
let timeOut = (Math.random() * tried * 200) + 100;
retry(timeOut);
};
let retryWrapped = retryWrapper(tryCallBack, simulateRequest);
You can use it with concurrent-wrapper to also add concurrent logic to your async function.
$ npm install -S concurrent-wrapper retry-wrapper
// var concurrentWrapper = require(concurrent-wrapper).concurrentWrapper;
import { concurrentWrapper } from 'concurrent-wrapper';
// var retryWrapper = require(retry-wrapper).retryWrapper;
import { retryWrapper } from 'retry-wrapper';
// Fastest, retries must wait in que.
let retryAndConcurrent = retryWrapper(5, concurrentWrapper(5, myRequestFunction));
// Slower, retries doesn't wait in que.
//let retryAndConcurrent = concurrentWrapper(5, retryWrapper(5, myRequestFunction));
for (let i = 0, l = 1000; i < l; i++) {
retryAndConcurrent(i).then(console.log.bind(console)).catch(console.error.bind(console))
}
FAQs
Easily turn an async function returning a Promise with retry logic.
We found that retry-wrapper 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
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.