
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
@lumenlabs-dev/fast-node-retry
Advanced tools
Abstraction for exponential and custom retry strategies for failed operations.
A fast, TypeScript-native abstraction for exponential and custom retry strategies for failed operations.
npm install @lumenlabs-dev/fast-node-retry
This module has been fully migrated to TypeScript with complete type safety and is production-ready. All tests pass and the API maintains backward compatibility with the original retry package.
The example below will retry a potentially failing dns.resolve operation
10 times using an exponential backoff strategy. With the default settings, this
means the last attempt is made after 17 minutes and 3 seconds.
const dns = require('dns');
const retry = require('@lumenlabs-dev/fast-node-retry');
function faultTolerantResolve(address, cb) {
const operation = retry.operation();
operation.attempt(function(currentAttempt) {
dns.resolve(address, function(err, addresses) {
if (operation.retry(err)) {
return;
}
cb(err ? operation.mainError() : null, addresses);
});
});
}
faultTolerantResolve('nodejs.org', function(err, addresses) {
console.log(err, addresses);
});
With TypeScript:
import * as dns from 'dns';
import * as retry from '@lumenlabs-dev/fast-node-retry';
function faultTolerantResolve(address: string, cb: (err: Error | null, addresses?: string[]) => void): void {
const operation = retry.operation();
operation.attempt((currentAttempt) => {
dns.resolve(address, (err, addresses) => {
if (operation.retry(err)) {
return;
}
cb(err ? operation.mainError() : null, addresses);
});
});
}
faultTolerantResolve('nodejs.org', (err, addresses) => {
console.log(err, addresses);
});
Of course you can also configure the factors that go into the exponential
backoff. See the API documentation below for all available settings.
currentAttempt is an int representing the number of attempts so far.
const operation = retry.operation({
retries: 5,
factor: 3,
minTimeout: 1000,
maxTimeout: 60000,
randomize: true,
});
const retry = require('@lumenlabs-dev/fast-node-retry');
async function fetchWithRetry(url) {
const operation = retry.operation({
retries: 3,
factor: 2,
minTimeout: 1000,
maxTimeout: 5000,
});
return new Promise((resolve, reject) => {
operation.attempt(async (currentAttempt) => {
try {
console.log(`Attempt ${currentAttempt}`);
const response = await fetch(url);
if (!response.ok) {
throw new Error(`HTTP ${response.status}`);
}
const data = await response.json();
resolve(data);
} catch (err) {
if (operation.retry(err)) {
return; // Will retry
}
reject(operation.mainError());
}
});
});
}
fetchWithRetry('https://api.example.com/data')
.then(data => console.log('Success:', data))
.catch(err => console.error('Failed:', err));
With async/await:
import * as retry from '@lumenlabs-dev/fast-node-retry';
async function retryableOperation(): Promise<string> {
const operation = retry.operation({
retries: 5,
minTimeout: 1000,
});
return new Promise((resolve, reject) => {
operation.attempt(async (currentAttempt) => {
try {
console.log(`Attempt ${currentAttempt}`);
const result = await someFlakyOperation();
resolve(result);
} catch (err) {
if (operation.retry(err as Error)) {
return; // Will retry
}
reject(operation.mainError());
}
});
});
}
Creates a new RetryOperation object. options is the same as retry.timeouts()'s options, with three additions:
forever: Whether to retry forever, defaults to false.unref: Whether to unref the setTimeout's, defaults to false.maxRetryTime: The maximum time (in milliseconds) that the retried operation is allowed to run. Default is Infinity.Returns an array of timeouts. All time options and return values are in
milliseconds. If options is an array, a copy of that array is returned.
options is a JS object that can contain any of the following keys:
retries: The maximum amount of times to retry the operation. Default is 10. Seting this to 1 means do it once, then retry it once.factor: The exponential factor to use. Default is 2.minTimeout: The number of milliseconds before starting the first retry. Default is 1000.maxTimeout: The maximum number of milliseconds between two retries. Default is Infinity.randomize: Randomizes the timeouts by multiplying with a factor between 1 to 2. Default is false.The formula used to calculate the individual timeouts is:
Math.min(random * minTimeout * Math.pow(factor, attempt), maxTimeout)
Have a look at this article for a better explanation of approach.
Returns a new timeout (integer in milliseconds) based on the given parameters.
attempt is an integer representing for which retry the timeout should be calculated. If your retry operation was executed 4 times you had one attempt and 3 retries. If you then want to calculate a new timeout, you should set attempt to 4 (attempts are zero-indexed).
opts can include factor, minTimeout, randomize (boolean) and maxTimeout. They are documented above.
retry.createTimeout() is used internally by retry.timeouts() and is public for you to be able to create your own timeouts for reinserting an item.
Wrap all functions of the obj with retry. Optionally you can pass operation options and
an array of method names which need to be wrapped.
retry.wrap(obj)
retry.wrap(obj, ['method1', 'method2'])
retry.wrap(obj, {retries: 3})
retry.wrap(obj, {retries: 3}, ['method1', 'method2'])
The options object can take any options that the usual call to retry.operation can take.
Creates a new RetryOperation where timeouts is an array where each value is
a timeout given in milliseconds.
Available options:
forever: Whether to retry forever, defaults to false.unref: Wether to unref the setTimeout's, defaults to false.If forever is true, the following changes happen:
RetryOperation.errors() will only output an array of one item: the last error.RetryOperation will repeatedly use the timeouts array. Once all of its timeouts have been used up, it restarts with the first timeout, then uses the second and so on.Returns an array of all errors that have been passed to retryOperation.retry() so far. The
returning array has the errors ordered chronologically based on when they were passed to
retryOperation.retry(), which means the first passed error is at index zero and the last is
at the last index.
A reference to the error object that occured most frequently. Errors are
compared using the error.message property.
If multiple error messages occured the same amount of time, the last error object with that message is returned.
If no errors occured so far, the value is null.
Defines the function fn that is to be retried and executes it for the first
time right away. The fn function can receive an optional currentAttempt callback that represents the number of attempts to execute fn so far.
Optionally defines timeoutOps which is an object having a property timeout in miliseconds and a property cb callback function.
Whenever your retry operation takes longer than timeout to execute, the timeout callback function cb is called.
This is an alias for retryOperation.attempt(fn). This is deprecated. Please use retryOperation.attempt(fn) instead.
This is an alias for retryOperation.attempt(fn). This is deprecated. Please use retryOperation.attempt(fn) instead.
Returns false when no error value is given, or the maximum amount of retries
has been reached.
Otherwise it returns true, and retries the operation after the timeout for
the current attempt number.
Allows you to stop the operation being retried. Useful for aborting the operation on a fatal error etc.
Resets the internal state of the operation object, so that you can call attempt() again as if this was a new operation object.
Returns an int representing the number of attempts it took to call fn before it was successful.
This package is written in TypeScript and provides full type definitions out of the box. No need to install separate @types packages.
import * as retry from '@lumenlabs-dev/fast-node-retry';
import type { RetryOptions, RetryOperation } from '@lumenlabs-dev/fast-node-retry';
const options: RetryOptions = {
retries: 5,
factor: 2,
minTimeout: 1000,
maxTimeout: 60000,
randomize: true,
};
const operation: RetryOperation = retry.operation(options);
For detailed information about the TypeScript migration, see TYPESCRIPT_MIGRATION.md.
This fork includes several performance optimizations:
Date.now()All optimizations maintain full backward compatibility with the original API.
This package is licensed under the MIT license.
This package is a TypeScript fork of the original node-retry by Tim Koschützki, with performance improvements and full type safety.
stop functionality, thanks to @maxnachlinger.unref functionality, thanks to @satazor.FAQs
Abstraction for exponential and custom retry strategies for failed operations.
We found that @lumenlabs-dev/fast-node-retry demonstrated a healthy version release cadence and project activity because the last version was released less than 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
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.