Socket
Socket
Sign inDemoInstall

httplease-retry

Package Overview
Dependencies
0
Maintainers
4
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    httplease-retry

Retry filter for httplease


Version published
Weekly downloads
562
increased by131.28%
Maintainers
4
Created
Weekly downloads
 

Readme

Source

httplease-retry

Provides two different retry mechanisms, backoff and failover retrying as an httplease filter.

Failover retry filter retries requests with optional fallback to alternate servers. Backoff retry filter will retry against the same server until the retryTimeout limit has been reached. By default it will retry if 429s and 503s are received, but this logic can be changed by specifying 'shouldRetryFn'.

Usage guide

Install the library:

npm install --save httplease-retry

For more examples have a look at the test/integration directory.

Example - Failover retry

const httplease = require('httplease');
const httpleaseRetry = require('httplease-retry');


const retryConfig = {
    shouldRetryFn: ({
        error, // The error from httplease
        attempts, // Number of attempts
        requestConfig, // httplease requestConfig
    }) => true,
    maxAttempts: 2,
    retryDelayMillis: 50,
    baseUrlList: [
        'http://example.com/basePath',
        'http://example.com/secondaryPath
   ]
};

// this can be saved and reused as many times as you want
const httpClient = httplease.builder()
    .withFilter(httpleaseRetry.createFailoverRetryFilter(retryConfig));


// make a request
httpClient
    .withPath('/some-resource')
    .withMethodGet()
    .send();

Example - Backoff retry

const httplease = require('httplease');
const httpleaseRetry = require('httplease-retry');

const retryConfig = {
    retryTimeoutMillis: 10 * 1000 //Retries for a maximum of 10 seconds after the Request started
    shouldRetryFn: ({
        error, // The error from httplease
        attempts, // Number of attempts
        requestConfig, // httplease requestConfig
        startTimestamp // The timestamp the when the request started
   }) = attempts > 5 // Example to stop retrying after 5 attempts
};

// this can be saved and reused as many times as you want
const httpClient = httplease.builder()
    .withFilter(httpleaseRetry.createBackoffRetryFilter(retryConfig));


// make a request
httpClient
    .withPath('/some-resource')
    .withMethodGet()
    .send();

Development guide

Install dependencies

npm install

Useful commands

# Run all checks
npm test

# Run just the jasmine tests
npm run test:jasmine

# Run just the linter
npm run test:lint

Perform a release

npm version 99.98.97
npm publish
git push
git push --tags

Contributors

Pull requests, issues and comments welcome. For pull requests:

  • Add tests for new features and bug fixes
  • Follow the existing style
  • Separate unrelated changes into multiple pull requests

See the existing issues for things to start contributing.

For bigger changes, make sure you start a discussion first by creating an issue and explaining the intended change.

Atlassian requires contributors to sign a Contributor License Agreement, known as a CLA. This serves as a record stating that the contributor is entitled to contribute the code/documentation/translation to the project and is willing to have it used in distributions and derivative works (or is willing to transfer ownership).

License

Copyright (c) 2017 Atlassian and others. Apache 2.0 licensed, see LICENSE file.

Keywords

FAQs

Last updated on 16 Feb 2022

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