axios-extensions
axios-extensions copied to clipboard
🍱 axios extensions lib, including throttle, cache, retry features etc...
How can I clear all cache? I am requesting the same url but with other header data and cache will not allow to send it. I am using _throttleAdapterEnhancer_ and...
In our API calls we pass a languageid & siteid as header data, which will give us different results. For this it would be handy for us to allow passing...
When using throttle &/or cache it would be beneficial to have a fast return Cache, but update (if possible) Cache in background as a post event. so instead of (pseudo...
Can `throttleAdapterEnhancer` be configed for single endpoint like `cacheAdapterEnhancer` does? Declare a config for `AxiosRequestConfig` and override the options passed in for adapter entrance. So it can be used more...
can't use getDefaultAdapter with axios 1.x https://github.com/axios/axios/commit/d032edda08948f3f613ff34f32af49cad3aa74db
copilot:all Hello! I have added `cacheKeyGenerator` as described in #57 It also can be used as a workaround for these issues #66 #68 Please provide your feedback, maybe i should...
https://github.com/isaacs/node-lru-cache/blob/main/CHANGELOG.md Breaking Change: Should use named import instead of default import Change this: ``` import LRUCache from 'lru-cache' ``` To this: ``` import { LRUCache } from 'lru-cache' ```
I saw that this project's last update have been released 1 year ago and some issues still exists since 2020. And I want use fetch and keep the similar API...
Versions: - axios v1.6.7 - axios-extensions v3.1.6 - node v20.11.1 - npm v10.2.4 Trying to use the `cacheAdapterEnhancer` fails with the message: ``` Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: Package subpath './lib/helpers/buildURL' is not...