Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
axios-retry-after
Advanced tools
A tiny HTTP retry interceptor for axios.
This interceptor catches HTTP 429 errors, reads the Retry-After
header, and retries the request at the proper type.
With NPM:
npm install --save axios-retry-after
With Yarn:
yarn add axios-retry-after
import axios from 'axios'
import retry from 'axios-retry-after'
const client = axios.createClient()
client.interceptors.response.use(null, retry(client))
You can optionally customize the behavior of this interceptor by passing a second argument including one or more of the methods demonstrated below:
client.interceptors.response.use(null, retry(client, {
// Determine when we should attempt to retry
isRetryable (error) {
return (
error.response && error.response.status === 429 &&
// Use X-Retry-After rather than Retry-After, and cap retry delay at 60 seconds
error.response.headers['x-retry-after'] && error.response.headers['x-retry-after'] <= 60
)
}
// Customize the wait behavior
wait (error) {
return new Promise(
// Use X-Retry-After rather than Retry-After
resolve => setTimeout(resolve, error.response.headers['x-retry-after'])
)
}
// Customize the retry request itself
retry (axios, error) {
if (!error.config) {
throw error
}
// Apply request customizations before retrying
// ...
return axios(error.config)
}
}))
FAQs
A tiny HTTP 429 Retry-After interceptor for axios
The npm package axios-retry-after receives a total of 835 weekly downloads. As such, axios-retry-after popularity was classified as not popular.
We found that axios-retry-after demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.