axios-stream-auth-refresh
v1.0.1
Published
Parallel refresh token handler using RxJS and Axios
Maintainers
Readme
axios-stream-auth-refresh
Smart token refresh interceptor for Axios using RxJS streams
Prevents duplicate refresh token requests when multiple API calls fail simultaneously with 401 errors.
Note: This library is inspired by axios-auth-refresh but redesigned to use RxJS streams for better handling of parallel requests and reactive state management.
Installation • Quick Start • API Reference • Examples • Acknowledgments
The Problem
When your access token expires, multiple API requests might fail at the same time. Without proper handling:
- Each failed request triggers a separate token refresh call
- Race conditions occur between refresh requests
- Server gets bombarded with unnecessary refresh token calls
- Complex state management to track refresh status
The Solution
axios-stream-auth-refresh uses RxJS BehaviorSubject to intelligently queue failed requests and refresh the token only once:
- Single refresh call for multiple simultaneous failures
- Automatic request retry after successful token refresh
- Queue management using reactive streams
- Type-safe with full TypeScript support
- Lightweight with minimal dependencies
- Configurable status codes and behaviors
Installation
npm install axios-stream-auth-refresh rxjs axiosOr with other package managers:
yarn add axios-stream-auth-refresh rxjs axios
pnpm add axios-stream-auth-refresh rxjs axios
bun add axios-stream-auth-refresh rxjs axiosPeer Dependencies
axios>= 1.0.0rxjs>= 7.0.0
Quick Start
import axios from 'axios'
import { createStreamRefreshInterceptor } from 'axios-stream-auth-refresh'
const api = axios.create({
baseURL: 'https://api.example.com',
})
createStreamRefreshInterceptor(api, async (failedRequest) => {
const { data } = await axios.post('/auth/refresh', {
refreshToken: localStorage.getItem('refreshToken'),
})
localStorage.setItem('accessToken', data.accessToken)
failedRequest.headers.Authorization = `Bearer ${data.accessToken}`
return true
})
api.interceptors.request.use((config) => {
const token = localStorage.getItem('accessToken')
if (token) {
config.headers.Authorization = `Bearer ${token}`
}
return config
})How It Works
Multiple requests fail (401) ──┐
│
├──► First request triggers refresh
│ │
Other requests are queued ──────┤ │
│ ▼
│ Refresh token API call
│ │
│ ▼
│ Token updated
│ │
└────┴──► All queued requests retry
with new tokenAPI Reference
createStreamRefreshInterceptor(instance, refreshAuthCall, options?)
Sets up the refresh token interceptor on an Axios instance.
Parameters
| Parameter | Type | Required | Description |
| ----------------- | -------------------------------------------------- | -------- | --------------------------------------------------------------------- |
| instance | AxiosInstance | ✅ | The Axios instance to attach the interceptor to |
| refreshAuthCall | (config: AxiosRequestConfig) => Promise<boolean> | ✅ | Async function that refreshes the token and returns true on success |
| options | AxiosStreamRefreshOptions | ❌ | Configuration options |
Options
interface AxiosStreamRefreshOptions {
statusCodes?: number[]
}Default: { statusCodes: [401] }
Request Config Extensions
interface AxiosRequestConfig {
skipAuthRefresh?: boolean
retry?: boolean
}Examples
Basic Usage with JWT
import axios from 'axios'
import { createStreamRefreshInterceptor } from 'axios-stream-auth-refresh'
import type { AxiosRequestConfig } from 'axios'
const api = axios.create({
baseURL: 'https://api.example.com',
})
const refreshAuthLogic = async (
originalConfig: AxiosRequestConfig
): Promise<boolean> => {
try {
const refreshToken = localStorage.getItem('refreshToken')
const response = await axios.post('https://api.example.com/auth/refresh', {
refreshToken,
})
const newToken = response?.data?.accessToken
if (!newToken) {
throw new Error('No access token received')
}
localStorage.setItem('accessToken', data.accessToken)
localStorage.setItem('refreshToken', data.refreshToken)
originalConfig.headers = originalConfig.headers || {}
originalConfig.headers.Authorization = `Bearer ${newToken}`
return true
} catch (error) {
localStorage.clear()
window.location.href = '/login'
throw error
}
}
createStreamRefreshInterceptor(api, refreshAuthLogic)
api.interceptors.request.use((config) => {
const token = localStorage.getItem('accessToken')
if (token) {
config.headers.Authorization = `Bearer ${token}`
}
return config
})Custom Status Codes
createStreamRefreshInterceptor(
api,
async (config) => {
// Refresh logic
return true
},
{ statusCodes: [401, 403] }
)Skip Refresh for Specific Requests
axios.post('/auth/refresh', data, {
skipAuthRefresh: true,
})
axios.post('/auth/login', credentials, {
skipAuthRefresh: true,
})With React Context
import { createContext, useContext, useEffect } from 'react'
import axios from 'axios'
import { createStreamRefreshInterceptor } from 'axios-stream-auth-refresh'
const api = axios.create({
baseURL: process.env.REACT_APP_API_URL
})
const ApiContext = createContext(api)
export function ApiProvider({ children }) {
useEffect(() => {
createStreamRefreshInterceptor(api, async (config) => {
const refreshToken = localStorage.getItem('refreshToken')
if (!refreshToken) {
window.location.href = '/login'
throw new Error('No refresh token')
}
try {
const { data } = await axios.post('/auth/refresh', {
refreshToken
}, { skipAuthRefresh: true })
localStorage.setItem('accessToken', data.accessToken)
config.headers.Authorization = `Bearer ${data.accessToken}`
return true
} catch (error) {
localStorage.clear()
window.location.href = '/login'
throw error
}
})
api.interceptors.request.use((config) => {
const token = localStorage.getItem('accessToken')
if (token) {
originalConfig.headers = originalConfig.headers || {};
config.headers.Authorization = `Bearer ${token}`
}
return config
})
}, [])
return <ApiContext.Provider value={api}>{children}</ApiContext.Provider>
}
export const useApi = () => useContext(ApiContext)With Next.js
import axios from 'axios'
import { createStreamRefreshInterceptor } from 'axios-stream-auth-refresh'
export const api = axios.create({
baseURL: process.env.NEXT_PUBLIC_API_URL,
})
createStreamRefreshInterceptor(api, async (config) => {
const response = await fetch('/api/auth/refresh', {
method: 'POST',
credentials: 'include',
})
if (!response.ok) {
throw new Error('Refresh failed')
}
const { accessToken } = await response.json()
config.headers.Authorization = `Bearer ${accessToken}`
return true
})Testing
npm test
npm run test:ui
npm run test:coverageContributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
MIT © Pourya Alipanah
Acknowledgments
This library is inspired by axios-auth-refresh by @Flyrell. While axios-auth-refresh provides excellent token refresh capabilities, this library takes a different approach using RxJS streams for:
- Better handling of parallel requests through BehaviorSubject
- Reactive state management for token refresh status
- More predictable queuing behavior with RxJS operators
Special thanks to the axios-auth-refresh project and its contributors for pioneering this pattern in the Axios ecosystem.
Made with ❤️ and RxJS
