got vs fetch-retry vs axios-retry vs retry-axios vs superagent-retry
HTTP Request Retry Libraries Comparison
1 Year
gotfetch-retryaxios-retryretry-axiossuperagent-retrySimilar Packages:
What's HTTP Request Retry Libraries?

HTTP request retry libraries are designed to enhance the reliability of network requests by automatically retrying failed requests based on specified criteria. These libraries help developers handle transient errors, such as network issues or server unavailability, ensuring that applications can gracefully recover from temporary failures without requiring manual intervention. They provide configurable options for retry strategies, including exponential backoff, maximum retries, and specific error handling, making it easier to build robust applications that communicate over HTTP.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
got22,331,95014,451242 kB1287 days agoMIT
fetch-retry4,122,87430955.2 kB3a year agoMIT
axios-retry3,627,9811,93033.6 kB506 months agoApache-2.0
retry-axios886,67149336.4 kB34a year agoApache-2.0
superagent-retry16,54485-109 years ago-
Feature Comparison: got vs fetch-retry vs axios-retry vs retry-axios vs superagent-retry

Integration

  • got:

    Got is a standalone HTTP request library that includes built-in retry functionality. It is designed to work out of the box, providing a comprehensive solution for making HTTP requests with retry logic included.

  • fetch-retry:

    fetch-retry is designed to work specifically with the Fetch API, making it easy to add retry capabilities without altering the core Fetch implementation. This ensures compatibility with existing Fetch-based code.

  • axios-retry:

    axios-retry integrates directly with Axios, allowing you to add retry functionality with minimal configuration. It leverages Axios interceptors to manage retries seamlessly within your existing request flow.

  • retry-axios:

    retry-axios is an extension of Axios that provides enhanced retry capabilities. It allows you to configure retry strategies directly within your Axios instance, making it easy to manage retries alongside other Axios features.

  • superagent-retry:

    superagent-retry integrates with Superagent, allowing you to implement retry logic while keeping the familiar Superagent API. This makes it easy to enhance your existing Superagent requests with retries.

Retry Strategy

  • got:

    Got provides a robust retry strategy that includes options for maximum retries, retry delay, and error codes to retry on. This flexibility makes it suitable for a wide range of use cases.

  • fetch-retry:

    fetch-retry allows you to define retry conditions based on HTTP status codes or network errors, giving you control over when to retry requests. It also supports configurable retry delays.

  • axios-retry:

    axios-retry supports customizable retry strategies, including exponential backoff, which allows you to specify the delay between retries. This helps to avoid overwhelming the server during transient failures.

  • retry-axios:

    retry-axios offers advanced retry strategies, including the ability to customize the retry delay and specify which HTTP status codes should trigger a retry. This level of control is beneficial for applications with specific error handling needs.

  • superagent-retry:

    superagent-retry allows you to configure retry options such as maximum attempts and delay between retries. This ensures that you can tailor the retry logic to fit your application's requirements.

Error Handling

  • got:

    Got includes advanced error handling capabilities, allowing you to catch and respond to errors in a structured way. It provides detailed error information, making it easier to diagnose issues during retries.

  • fetch-retry:

    fetch-retry allows you to define custom error handling logic, enabling you to specify which types of errors should be retried. This gives you the flexibility to handle different scenarios based on your application's needs.

  • axios-retry:

    axios-retry provides built-in error handling that allows you to specify which errors should trigger a retry. This includes handling network errors and specific HTTP status codes, ensuring that retries are only attempted when appropriate.

  • retry-axios:

    retry-axios offers comprehensive error handling, allowing you to customize how errors are processed and which errors trigger a retry. This is useful for applications that need specific error management strategies.

  • superagent-retry:

    superagent-retry provides basic error handling for retries, focusing on network errors and specific HTTP status codes. This simplicity makes it easy to implement without adding complexity.

Configuration Flexibility

  • got:

    Got offers a high degree of configuration flexibility, allowing you to customize every aspect of the HTTP request and retry process. This makes it suitable for complex applications that require detailed control.

  • fetch-retry:

    fetch-retry is lightweight and provides a straightforward configuration interface, making it easy to set up retry logic without overwhelming complexity. This is ideal for projects that prioritize simplicity.

  • axios-retry:

    axios-retry allows for extensive configuration options, enabling you to customize retry behavior based on your application's requirements. This includes setting maximum retries, delay strategies, and specific error conditions.

  • retry-axios:

    retry-axios allows you to configure retries directly within your Axios instance, providing a familiar interface for developers already using Axios. This makes it easy to integrate into existing projects.

  • superagent-retry:

    superagent-retry offers basic configuration options that are easy to understand and implement. This simplicity is beneficial for developers looking for quick and effective retry functionality.

Community Support

  • got:

    Got has a strong community and is well-documented, providing users with a wealth of resources for understanding and utilizing its features, including retries.

  • fetch-retry:

    fetch-retry is part of the growing ecosystem around the Fetch API, with a supportive community that provides resources and examples for implementing retry logic effectively.

  • axios-retry:

    axios-retry benefits from the large Axios community, ensuring that you have access to extensive documentation, examples, and community support for troubleshooting and best practices.

  • retry-axios:

    retry-axios has a supportive community due to its connection with Axios, offering resources and examples for implementing retry strategies effectively within Axios applications.

  • superagent-retry:

    superagent-retry benefits from the established Superagent community, providing users with access to documentation and community-driven support for implementing retry logic.

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

    Choose got if you need a comprehensive HTTP request library with built-in retry functionality. Got is designed for Node.js and offers a rich feature set, including support for streams, promises, and advanced error handling, making it suitable for more complex applications.

  • fetch-retry:

    Choose fetch-retry if you are using the native Fetch API and want to add retry capabilities. It is lightweight and allows you to extend the Fetch API with minimal overhead, making it ideal for projects that prioritize native solutions.

  • axios-retry:

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

  • retry-axios:

    Choose retry-axios if you want to extend Axios with advanced retry capabilities. It allows for more complex retry strategies and integrates well with existing Axios configurations, making it a good choice for applications that require detailed control over retry behavior.

  • superagent-retry:

    Choose superagent-retry if you are using Superagent for HTTP requests and need to add retry logic. It provides a straightforward way to implement retries while maintaining the simplicity and readability of Superagent's API.

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