retry-request vs fetch-retry vs axios-retry vs retry-axios vs requestretry vs superagent-retry
HTTP Request Retry Libraries Comparison
1 Year
retry-requestfetch-retryaxios-retryretry-axiosrequestretrysuperagent-retrySimilar Packages:
What's HTTP Request Retry Libraries?

These libraries are designed to enhance HTTP request handling by automatically retrying failed requests. They are particularly useful in scenarios where network reliability is an issue, such as in mobile applications or when interacting with unstable APIs. By implementing retry logic, these packages help improve the resilience of applications and ensure better user experiences by reducing the likelihood of failures due to transient issues.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
retry-request7,865,4146721.2 kB27 days agoMIT
fetch-retry3,980,10630955.2 kB3a year agoMIT
axios-retry3,803,8621,93033.6 kB517 months agoApache-2.0
retry-axios886,92849436.4 kB34a year agoApache-2.0
requestretry268,66434856.5 kB10-MIT
superagent-retry14,43085-109 years ago-
Feature Comparison: retry-request vs fetch-retry vs axios-retry vs retry-axios vs requestretry vs superagent-retry

Integration

  • retry-request:

    A straightforward extension of the request library, it provides a simple API for adding retries, making it easy to implement without extensive configuration or changes to existing code.

  • fetch-retry:

    Designed to work with the Fetch API, it provides a simple wrapper around the native fetch function, enabling retry capabilities without requiring additional libraries or complex setups.

  • axios-retry:

    Integrates directly with Axios, allowing you to add retry logic with minimal configuration. It leverages Axios interceptors, making it easy to implement retries without altering your existing request code.

  • retry-axios:

    Enhances Axios with advanced retry features, including exponential backoff and customizable retry conditions, making it suitable for applications that require fine-tuned control over retry behavior.

  • requestretry:

    Built to extend the request library, it adds retry functionality seamlessly, allowing you to specify retry options directly in your request calls without needing to modify your request flow.

  • superagent-retry:

    Integrates with SuperAgent, allowing users to easily add retry logic to their HTTP requests while maintaining the familiar SuperAgent syntax.

Configurability

  • retry-request:

    Offers basic configuration for retry attempts and delays, suitable for straightforward use cases without the need for extensive customization.

  • fetch-retry:

    Provides basic configuration options for retry attempts and delay, but is less configurable compared to others, making it suitable for simpler use cases.

  • axios-retry:

    Offers various configuration options such as retry count, retry delay, and conditions under which to retry, allowing developers to tailor the retry logic to their specific needs.

  • retry-axios:

    Includes extensive configuration options for retries, such as custom retry conditions and backoff strategies, making it ideal for applications with complex retry requirements.

  • requestretry:

    Highly configurable with options for retry count, delay, and custom error handling, allowing developers to define how retries should behave in different scenarios.

  • superagent-retry:

    Provides configuration options for retry attempts and delays, allowing users to customize the retry behavior while keeping the implementation simple.

Error Handling

  • retry-request:

    Provides basic error handling for retries, focusing on common error scenarios without extensive customization options.

  • fetch-retry:

    Handles network errors gracefully, but offers limited customization for error handling compared to other libraries, making it suitable for basic scenarios.

  • axios-retry:

    Allows for custom error handling strategies, enabling developers to define specific conditions under which requests should be retried based on the error type or status code.

  • retry-axios:

    Offers advanced error handling capabilities, including the ability to retry based on specific HTTP status codes, making it suitable for applications with strict error handling requirements.

  • requestretry:

    Includes robust error handling features, allowing developers to specify which errors should trigger a retry, providing more control over the retry process.

  • superagent-retry:

    Includes basic error handling for retry attempts, allowing users to define which errors should trigger a retry while keeping the implementation straightforward.

Performance

  • retry-request:

    Designed for simplicity and efficiency, it provides basic retry functionality without introducing significant performance overhead.

  • fetch-retry:

    Lightweight and designed to have minimal impact on performance, making it suitable for applications that prioritize speed and efficiency in HTTP requests.

  • axios-retry:

    Optimized for performance with minimal overhead, leveraging Axios's existing capabilities to handle retries efficiently without significant impact on request speed.

  • retry-axios:

    Maintains high performance while adding retry capabilities, ensuring that the additional logic does not significantly slow down request processing.

  • requestretry:

    Performance is generally good, but may vary depending on the complexity of the retry logic defined by the user, as it can introduce additional overhead if not configured properly.

  • superagent-retry:

    Optimized for use with SuperAgent, ensuring that retry logic is implemented efficiently without compromising the performance of HTTP requests.

Community Support

  • retry-request:

    Being a straightforward extension of the request library, it benefits from the established community around request, providing solid support and documentation.

  • fetch-retry:

    As a newer package, it has a smaller community but is gaining traction among developers using the Fetch API, with growing documentation and examples available.

  • axios-retry:

    Backed by a large community of Axios users, it benefits from extensive documentation and community support, making it easier to find solutions and examples.

  • retry-axios:

    Supported by a growing community of users, it has good documentation and examples available, making it easier to implement and troubleshoot.

  • requestretry:

    Part of the well-established request library ecosystem, it has strong community support and extensive documentation, making it a reliable choice for developers.

  • superagent-retry:

    As part of the SuperAgent ecosystem, it has a dedicated user base and good documentation, ensuring that developers can find help and resources easily.

How to Choose: retry-request vs fetch-retry vs axios-retry vs retry-axios vs requestretry vs superagent-retry
  • retry-request:

    Choose retry-request if you are using the request library and want a straightforward way to add retry logic without complex configurations. It is best for simpler use cases where basic retry functionality suffices.

  • fetch-retry:

    Opt for fetch-retry if you are using the Fetch API and need a lightweight solution to add retry capabilities. It is particularly useful for modern web applications that rely on the Fetch API and want to keep the bundle size small.

  • axios-retry:

    Choose axios-retry if you are already using Axios for your HTTP requests and want a simple way to add retry functionality without changing your existing code structure. It integrates seamlessly with Axios and allows for customizable retry strategies.

  • retry-axios:

    Use retry-axios if you want to extend Axios with advanced retry capabilities, including exponential backoff and customizable retry conditions. This is suitable for applications that need more control over how retries are handled.

  • requestretry:

    Select requestretry if you are using the request library and need a robust solution that includes retry logic. This package is ideal for applications that already depend on request and require extensive configuration options for retries.

  • superagent-retry:

    Select superagent-retry if you are using SuperAgent for making HTTP requests and need to add retry functionality. This package is tailored for SuperAgent users and provides an easy way to implement retries.

README for retry-request

THIS REPOSITORY AND PACKAGE WILL BE DEPRECATED IN JULY 2024. RELEVANT FUNCTIONALITIES HAVE BEEN MOVED TO GOOGLEAPIS/GAXIOS

|retry-request |:-: |Retry a request with built-in exponential backoff.

$ npm install --save teeny-request
$ npm install --save retry-request
var request = require('retry-request', {
  request: require('teeny-request'),
});

It should work the same as request and teeny-request in both callback mode and stream mode.

Note: This module only works when used as a readable stream, i.e. POST requests aren't supported (#3).

Do I need to install request?

Yes! You must independently install teeny-request OR request (deprecated) and provide it to this library:

var request = require('retry-request', {
  request: require('teeny-request'),
});

Callback

urlThatReturns503 will be requested 3 total times before giving up and executing the callback.

request(urlThatReturns503, function (err, resp, body) {});

Stream

urlThatReturns503 will be requested 3 total times before giving up and emitting the response and complete event as usual.

request(urlThatReturns503)
  .on('error', function () {})
  .on('response', function () {})
  .on('complete', function () {});

Can I monitor what retry-request is doing internally?

Yes! To enable the debug mode, set the environment variable DEBUG to retry-request.

(Thanks for the implementation, @yihaozhadan!)

request(requestOptions, [opts], [cb])

requestOptions

Passed directly to request or teeny-request. See the list of options supported:

  • https://github.com/request/request/#requestoptions-callback
  • https://github.com/googleapis/teeny-request#teenyrequestoptions-callback

opts (optional)

opts.noResponseRetries

Type: Number

Default: 2

The number of times to retry after a response fails to come through, such as a DNS resolution error or a socket hangup.

var opts = {
  noResponseRetries: 0,
};

request(url, opts, function (err, resp, body) {
  // url was requested 1 time before giving up and
  // executing this callback.
});

opts.objectMode

Type: Boolean

Default: false

Set to true if your custom opts.request function returns a stream in object mode.

opts.retries

Type: Number

Default: 2

var opts = {
  retries: 4,
};

request(urlThatReturns503, opts, function (err, resp, body) {
  // urlThatReturns503 was requested a total of 5 times
  // before giving up and executing this callback.
});

opts.currentRetryAttempt

Type: Number

Default: 0

var opts = {
  currentRetryAttempt: 1,
};

request(urlThatReturns503, opts, function (err, resp, body) {
  // urlThatReturns503 was requested as if it already failed once.
});

opts.shouldRetryFn

Type: Function

Default: Returns true if http.incomingMessage.statusCode is < 200 or >= 400.

var opts = {
  shouldRetryFn: function (incomingHttpMessage) {
    return incomingHttpMessage.statusMessage !== 'OK';
  },
};

request(urlThatReturnsNonOKStatusMessage, opts, function (err, resp, body) {
  // urlThatReturnsNonOKStatusMessage was requested a
  // total of 3 times, each time using `opts.shouldRetryFn`
  // to decide if it should continue before giving up and
  // executing this callback.
});

opts.request

Type: Function

If we not provided we will throw an error advising you to provide it.

NOTE: If you override the request function, and it returns a stream in object mode, be sure to set opts.objectMode to true.

var originalRequest = require('teeny-request').defaults({
  pool: {
    maxSockets: Infinity,
  },
});

var opts = {
  request: originalRequest,
};

request(urlThatReturns503, opts, function (err, resp, body) {
  // Your provided `originalRequest` instance was used.
});

opts.maxRetryDelay

Type: Number

Default: 64

The maximum time to delay in seconds. If retryDelayMultiplier results in a delay greater than maxRetryDelay, retries should delay by maxRetryDelay seconds instead.

opts.retryDelayMultiplier

Type: Number

Default: 2

The multiplier by which to increase the delay time between the completion of failed requests, and the initiation of the subsequent retrying request.

opts.totalTimeout

Type: Number

Default: 600

The length of time to keep retrying in seconds. The last sleep period will be shortened as necessary, so that the last retry runs at deadline (and not considerably beyond it). The total time starting from when the initial request is sent, after which an error will be returned, regardless of the retrying attempts made meanwhile.

cb (optional)

Passed directly to request. See the callback section: https://github.com/request/request/#requestoptions-callback.