got vs fetch-retry vs axios-retry vs node-fetch-retry vs superagent-retry
HTTP Request Libraries with Retry Functionality Comparison
1 Year
gotfetch-retryaxios-retrynode-fetch-retrysuperagent-retrySimilar Packages:
What's HTTP Request Libraries with Retry Functionality?

These libraries enhance HTTP request capabilities in Node.js and browser environments by providing built-in retry mechanisms. They are designed to handle transient errors, ensuring that requests are retried automatically without requiring additional logic from the developer. This is particularly useful in scenarios where network reliability is a concern, as it improves the robustness of applications by minimizing the impact of temporary failures.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
got22,310,87714,486242 kB12820 days agoMIT
fetch-retry4,019,17531055.2 kB3a year agoMIT
axios-retry3,789,9491,93233.6 kB507 months agoApache-2.0
node-fetch-retry80,72197.94 kB2-MIT
superagent-retry13,73385-109 years ago-
Feature Comparison: got vs fetch-retry vs axios-retry vs node-fetch-retry vs superagent-retry

Integration

  • got:

    Built into the Got library, providing a comprehensive solution for HTTP requests with retry capabilities, making it a one-stop solution for developers.

  • fetch-retry:

    Works as a wrapper around the Fetch API, enabling retry functionality without altering the core fetch implementation, making it easy to adopt in existing codebases.

  • axios-retry:

    Integrates directly with Axios, allowing you to leverage existing Axios configurations and interceptors while adding retry logic seamlessly.

  • node-fetch-retry:

    Enhances node-fetch by adding retry logic, maintaining a familiar API for those used to the Fetch API in a Node.js context.

  • superagent-retry:

    Extends Superagent's functionality, allowing users to maintain their existing Superagent codebase while adding retry capabilities effortlessly.

Customization

  • got:

    Provides advanced customization options, including retry on specific status codes, custom error handling, and configurable retry delays, making it highly flexible for various use cases.

  • fetch-retry:

    Allows customization of retry attempts and delay intervals, giving developers control over how retries are handled based on their application's needs.

  • axios-retry:

    Offers extensive customization options for retry strategies, including the ability to specify which status codes should trigger a retry and the delay between retries.

  • node-fetch-retry:

    Supports customizable retry options, allowing developers to specify the number of retries and delay between attempts, ensuring it fits specific application requirements.

  • superagent-retry:

    Allows for configuration of retry attempts and delay, enabling developers to tailor the retry behavior to suit their application's needs.

Error Handling

  • got:

    Includes robust error handling capabilities, allowing retries based on response status and providing detailed error messages to aid in debugging.

  • fetch-retry:

    Provides a simple way to manage errors by retrying failed requests, which is particularly useful for handling network issues in client-side applications.

  • axios-retry:

    Handles errors gracefully by allowing retries on specific HTTP status codes, which can be configured, thus improving user experience during transient failures.

  • node-fetch-retry:

    Facilitates error handling by automatically retrying failed requests, which helps maintain application stability during network fluctuations.

  • superagent-retry:

    Enhances Superagent's error handling by adding retry logic, allowing for improved resilience against temporary network issues.

Performance

  • got:

    Optimized for performance with built-in retry logic, ensuring that retries are handled efficiently without unnecessary delays.

  • fetch-retry:

    Lightweight and efficient, it adds minimal overhead to fetch requests, making it suitable for performance-sensitive applications.

  • axios-retry:

    Minimal performance overhead due to its integration with Axios, ensuring that retry logic does not significantly impact the overall request performance.

  • node-fetch-retry:

    Maintains the performance characteristics of node-fetch while adding retry capabilities, ensuring that applications remain responsive.

  • superagent-retry:

    Offers good performance with minimal impact on request speed, allowing for efficient handling of retries without sacrificing responsiveness.

Community Support

  • got:

    Has a strong community and extensive documentation, making it easy for developers to find help and examples for implementing retries effectively.

  • fetch-retry:

    While not as widely used as Axios, it benefits from the popularity of the Fetch API, with a growing community and support resources.

  • axios-retry:

    Backed by a large community due to its association with Axios, ensuring ample resources and support are available for developers.

  • node-fetch-retry:

    Supported by the node-fetch community, providing access to resources and discussions related to its use and best practices.

  • superagent-retry:

    Part of the Superagent ecosystem, it enjoys community support and resources, making it easier for developers to implement and troubleshoot.

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

    Opt for got if you need a powerful HTTP request library with built-in retry support and advanced features like streams and cancellation. Got is well-suited for server-side applications and offers a rich set of options for handling requests and responses.

  • fetch-retry:

    Select fetch-retry if you are using the Fetch API and want to add retry capabilities without changing your existing fetch calls. It is lightweight and works well in browser environments, making it ideal for client-side applications.

  • axios-retry:

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

  • node-fetch-retry:

    Use node-fetch-retry if you prefer a lightweight implementation of the Fetch API for Node.js with retry capabilities. It is a good choice for projects that require a familiar fetch interface in a Node.js environment without additional overhead.

  • superagent-retry:

    Choose superagent-retry if you are using Superagent and want to enhance its capabilities with retry functionality. It is particularly useful for projects that already utilize Superagent for making HTTP requests and need a simple way to handle retries.

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