Skip to content

Instantly share code, notes, and snippets.

View Jsurapong's full-sized avatar
🏠
Work from home

Surapong Kawkangploo "J" Jsurapong

🏠
Work from home
View GitHub Profile
@Jsurapong
Jsurapong / axios.js
Created December 13, 2021 04:16 — forked from matthewsuan/axios.js
Axios request queue-like that limits number of requests at any given time
import axios from 'axios'
const MAX_REQUESTS_COUNT = 5
const INTERVAL_MS = 10
let PENDING_REQUESTS = 0
// create new axios instance
const api = axios.create({})
/**