![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
httplease-retry
Advanced tools
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'.
Install the library:
npm install --save httplease-retry
For more examples have a look at the test/integration
directory.
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();
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();
npm install
# Run all checks
npm test
# Run just the jasmine tests
npm run test:jasmine
# Run just the linter
npm run test:lint
npm version 99.98.97
npm publish
git push
git push --tags
Pull requests, issues and comments welcome. For 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).
Copyright (c) 2017 Atlassian and others. Apache 2.0 licensed, see LICENSE file.
FAQs
Retry filter for httplease
The npm package httplease-retry receives a total of 16 weekly downloads. As such, httplease-retry popularity was classified as not popular.
We found that httplease-retry demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.