got vs axios-retry vs retry-axios vs requestretry vs node-fetch-retry vs superagent-retry
HTTP Request Libraries with Retry Capabilities Comparison
1 Year
gotaxios-retryretry-axiosrequestretrynode-fetch-retrysuperagent-retrySimilar Packages:
What's HTTP Request Libraries with Retry Capabilities?

These libraries provide mechanisms to make HTTP requests in Node.js while offering retry capabilities for handling transient failures. They enhance the reliability of applications by automatically retrying failed requests based on configurable strategies, which is essential for applications that depend on external APIs or services. Each library has its unique features, design principles, and use cases, making them suitable for different scenarios in web development.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
got22,159,44914,475242 kB12815 days 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
node-fetch-retry80,57097.94 kB2-MIT
superagent-retry14,43085-109 years ago-
Feature Comparison: got vs axios-retry vs retry-axios vs requestretry vs node-fetch-retry vs superagent-retry

Integration

  • got:

    A standalone library that does not depend on other libraries, providing a clean and modern API for making HTTP requests with built-in retry support.

  • axios-retry:

    Integrates directly with Axios, allowing you to use its existing configuration and features while adding retry capabilities seamlessly.

  • retry-axios:

    An extension of Axios that adds retry functionality, allowing for more complex retry strategies like exponential backoff.

  • requestretry:

    Enhances the request library by adding retry capabilities, making it suitable for projects that still use request and want to implement retries easily.

  • node-fetch-retry:

    Built on top of node-fetch, it allows you to leverage the simplicity of node-fetch while adding retry logic with minimal overhead.

  • superagent-retry:

    Enhances Superagent with retry capabilities, making it easy to add retries to existing Superagent requests.

Configuration Options

  • got:

    Provides extensive configuration options, including retry strategies based on response status codes, request errors, and customizable backoff strategies.

  • axios-retry:

    Offers flexible configuration options for defining retry conditions, such as specific HTTP status codes and retry delays, allowing for tailored retry strategies.

  • retry-axios:

    Includes advanced configuration options for retries, such as maximum retries, retry delays, and conditions for retrying requests.

  • requestretry:

    Offers configurable options for retry attempts and delay intervals, making it easy to customize how retries are handled.

  • node-fetch-retry:

    Allows basic configuration for retry attempts and delays, suitable for simple use cases without complex requirements.

  • superagent-retry:

    Provides basic configuration for retry attempts and intervals, making it straightforward to implement retries in Superagent.

Error Handling

  • got:

    Includes built-in error handling that distinguishes between different types of errors, providing more control over which errors should trigger retries.

  • axios-retry:

    Handles errors gracefully by allowing you to specify which errors should trigger a retry, ensuring that only transient errors are retried.

  • retry-axios:

    Provides robust error handling capabilities, allowing you to define custom logic for determining when to retry based on error types.

  • requestretry:

    Retries on specific errors and HTTP status codes, allowing for a straightforward approach to error handling in legacy applications.

  • node-fetch-retry:

    Retries based on network errors and specific HTTP status codes, making it suitable for handling common transient issues.

  • superagent-retry:

    Retries on network errors and configurable HTTP status codes, ensuring that transient issues are handled effectively.

Performance

  • got:

    Designed for high performance, Got is optimized for handling a large number of requests efficiently, making it suitable for applications with high throughput requirements.

  • axios-retry:

    Performance is closely tied to Axios, which is optimized for speed and efficiency. The retry mechanism is lightweight and does not significantly impact performance unless retries are frequent.

  • retry-axios:

    Maintains the performance characteristics of Axios while adding retry capabilities, ensuring that performance remains a priority even with retries.

  • requestretry:

    Performance may be impacted due to the legacy nature of the request library, but it provides a straightforward way to implement retries in existing applications.

  • node-fetch-retry:

    Lightweight and performant, node-fetch-retry maintains the efficiency of node-fetch while adding retry capabilities without significant overhead.

  • superagent-retry:

    Performance is similar to Superagent, which is generally efficient, but the retry mechanism may introduce some overhead depending on the configuration.

Community Support

  • got:

    Has a growing community and is well-documented, providing ample resources for developers looking to implement it in their projects.

  • axios-retry:

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

  • retry-axios:

    Benefits from the Axios community, ensuring that developers have access to support and resources for implementing retries effectively.

  • requestretry:

    While the request library is deprecated, requestretry still has community support, but new projects are encouraged to consider alternatives.

  • node-fetch-retry:

    Supported by the node-fetch community, it has good documentation and examples, making it accessible for developers.

  • superagent-retry:

    Supported by the Superagent community, it has sufficient documentation and examples, making it easier for developers to implement.

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

    Opt for got if you require a modern, feature-rich HTTP request library with built-in support for retries. Got offers a comprehensive API and is designed for performance, making it suitable for applications that need to handle a large number of requests efficiently.

  • axios-retry:

    Choose axios-retry if you are already using Axios for making HTTP requests and need a simple way to add retry functionality. It integrates seamlessly with Axios and allows for flexible retry strategies based on response status codes or request errors.

  • retry-axios:

    Choose retry-axios if you want to enhance your Axios requests with retry capabilities while also needing to handle specific scenarios like exponential backoff. It provides a robust solution for managing retries in a more controlled manner, making it suitable for applications with strict performance requirements.

  • requestretry:

    Use requestretry if you are familiar with the request library and need to add retry functionality. This library is suitable for legacy projects that still rely on request, providing a straightforward way to implement retries without changing the existing codebase significantly.

  • node-fetch-retry:

    Select node-fetch-retry if you prefer a lightweight solution that builds on the popular node-fetch library. It is ideal for projects that need a minimalistic approach while still requiring retry capabilities for handling failed requests.

  • superagent-retry:

    Select superagent-retry if you are using Superagent for making HTTP requests and want to add retry functionality. It is a good choice for projects that already utilize Superagent and need to enhance its capabilities without switching to another library.

README for got


Got




Sindre's open source work is supported by the community.
Special thanks to:



Fame Helsinki Fame Helsinki









Human-friendly and powerful HTTP request library for Node.js

Downloads Install size

See how Got compares to other HTTP libraries


You probably want Ky instead, by the same people. It's smaller, works in the browser too, and is more stable since it's built on Fetch. Or fetch-extras for simple needs.


Support questions should be asked here.

Install

npm install got

Warning: This package is native ESM and no longer provides a CommonJS export. If your project uses CommonJS, you will have to convert to ESM. Please don't open issues for questions regarding CommonJS / ESM.

Got v11 is no longer maintained and we will not accept any backport requests.

Take a peek

A quick start guide is available.

JSON mode

Got has a dedicated option for handling JSON payload.
Furthermore, the promise exposes a .json<T>() function that returns Promise<T>.

import got from 'got';

const {data} = await got.post('https://httpbin.org/anything', {
	json: {
		hello: 'world'
	}
}).json();

console.log(data);
//=> {"hello": "world"}

For advanced JSON usage, check out the parseJson and stringifyJson options.

For more useful tips like this, visit the Tips page.

Highlights

Documentation

By default, Got will retry on failure. To disable this option, set options.retry.limit to 0.

Main API

Timeouts and retries

Advanced creation

Cache, Proxy and UNIX sockets

Integration


Migration guides

Got plugins

  • got4aws - Got convenience wrapper to interact with AWS v4 signed APIs
  • gh-got - Got convenience wrapper to interact with the GitHub API
  • gl-got - Got convenience wrapper to interact with the GitLab API
  • gotql - Got convenience wrapper to interact with GraphQL using JSON-parsed queries instead of strings
  • got-fetch - Got with a fetch interface
  • got-scraping - Got wrapper specifically designed for web scraping purposes
  • got-ssrf - Got wrapper to protect server-side requests against SSRF attacks

Comparison

| | got | node-fetch | ky | axios | superagent | |-----------------------|:-------------------:|:--------------------:|:------------------------:|:------------------:|:----------------------:| | HTTP/2 support | :heavy_check_mark:¹ | :x: | :heavy_check_mark: | :x: | :heavy_check_mark:** | | Browser support | :x: | :heavy_check_mark:* | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | Promise API | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | Stream API | :heavy_check_mark: | Node.js only | :x: | :x: | :heavy_check_mark: | | Pagination API | :heavy_check_mark: | :x: | :x: | :x: | :x: | | Request cancelation | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | RFC compliant caching | :heavy_check_mark: | :x: | :x: | :x: | :x: | | Cookies (out-of-the-box) | :heavy_check_mark: | :x: | :x: | :x: | :x: | | Follows redirects | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | Retries on failure | :heavy_check_mark: | :x: | :heavy_check_mark: | :x: | :heavy_check_mark: | | Progress events | :heavy_check_mark: | :x: | :heavy_check_mark:*** | Browser only | :heavy_check_mark: | | Handles gzip/deflate | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | Advanced timeouts | :heavy_check_mark: | :x: | :x: | :x: | :x: | | Timings | :heavy_check_mark: | :x: | :x: | :x: | :x: | | Errors with metadata | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: | :x: | | JSON mode | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | Custom defaults | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: | :x: | | Composable | :heavy_check_mark: | :x: | :x: | :x: | :heavy_check_mark: | | Hooks | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: | :x: | | Issues open | | | | | | | Issues closed | | | | | | | Downloads | | | | | | | Coverage | TBD | | | | | | Build | | | | | | | Bugs | | | | | | | Dependents | | | | | | | Install size | | | | | | | GitHub stars | | | | | | | TypeScript support | | | | | | | Last commit | | | | | |

* It's almost API compatible with the browser fetch API.
** Need to switch the protocol manually. Doesn't accept PUSH streams and doesn't reuse HTTP/2 sessions.
*** Currently, only DownloadProgress event is supported, UploadProgress event is not supported.
¹ Requires Node.js 15.10.0 or above.
:sparkle: Almost-stable feature, but the API may change. Don't hesitate to try it out!
:grey_question: Feature in early stage of development. Very experimental.

Click here to see the install size of the Got dependencies.

Maintainers

Sindre Sorhus | Szymon Marczak ---|--- Sindre Sorhus | Szymon Marczak

These amazing companies are using Got


Segment is a happy user of Got! Got powers the main backend API that our app talks to. It's used by our in-house RPC client that we use to communicate with all microservices.

Vadim Demedes

Antora, a static site generator for creating documentation sites, uses Got to download the UI bundle. In Antora, the UI bundle (aka theme) is maintained as a separate project. That project exports the UI as a zip file we call the UI bundle. The main site generator downloads that UI from a URL using Got and streams it to vinyl-zip to extract the files. Those files go on to be used to create the HTML pages and supporting assets.

Dan Allen

GetVoIP is happily using Got in production. One of the unique capabilities of Got is the ability to handle Unix sockets which enables us to build a full control interfaces for our docker stack.

Daniel Kalen

We're using Got inside of Exoframe to handle all the communication between CLI and server. Exoframe is a self-hosted tool that allows simple one-command deployments using Docker.

Tim Ermilov

Karaoke Mugen uses Got to fetch content updates from its online server.

Axel Terizaki

Renovate uses Got, gh-got and gl-got to send millions of queries per day to GitHub, GitLab, npmjs, PyPi, Packagist, Docker Hub, Terraform, CircleCI, and more.

Rhys Arkins

Resistbot uses Got to communicate from the API frontend where all correspondence ingresses to the officials lookup database in back.

Chris Erickson

Natural Cycles is using Got to communicate with all kinds of 3rd-party REST APIs (over 9000!).

Kirill Groshkov

Microlink is a cloud browser as an API service that uses Got widely as the main HTTP client, serving ~22M requests a month, every time a network call needs to be performed.

Kiko Beats

We’re using Got at Radity. Thanks for such an amazing work!

Mirzayev Farid