Socket
Socket
Sign inDemoInstall

@types/retry

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/retry

TypeScript definitions for retry


Version published
Weekly downloads
11M
decreased by-16.87%
Maintainers
1
Install size
7.40 kB
Created
Weekly downloads
 

Package description

What is @types/retry?

The @types/retry package provides TypeScript type definitions for the 'retry' npm package, which is a utility for retrying operations that might fail. It allows developers to implement retry logic with various strategies and options, making it easier to handle transient failures in applications. The types package doesn't add functionality but offers type support for TypeScript users of 'retry'.

What are @types/retry's main functionalities?

Creating a retry operation

This feature allows you to create a retry operation. You can specify the operation you want to retry, such as a network request. The `attempt` method is used to try the operation, and `retry` is called if the operation fails, until the maximum number of attempts is reached.

import * as retry from 'retry';

const operation = retry.operation();

operation.attempt((currentAttempt) => {
  // Your operation here, e.g., a network request
  if (networkError) {
    if (operation.retry(networkError)) {
      return;
    }
    // Handle the network error after max retries
  }
});

Customizing retry options

This feature demonstrates how to customize the retry operation with specific options. You can set the maximum number of retries, the exponential backoff factor, minimum and maximum timeout between retries, and whether to randomize the retry intervals.

import * as retry from 'retry';

const operation = retry.operation({
  retries: 5, // Maximum number of attempts
  factor: 2, // The exponential factor
  minTimeout: 1 * 1000, // The number of milliseconds before starting the first retry
  maxTimeout: 60 * 1000, // The maximum number of milliseconds between two retries
  randomize: true, // Randomizes the timeouts by multiplying with a factor between 1 to 2
});

Other packages similar to @types/retry

Readme

Source

Installation

npm install --save @types/retry

Summary

This package contains type definitions for retry (https://github.com/tim-kos/node-retry).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/retry.

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: none

Credits

These definitions were written by Stan Goldmann, and BendingBender.

FAQs

Last updated on 07 Nov 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc