mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
Bumps [object-code](https://github.com/arthurfiorette/tinylibs/tree/HEAD/packages/object-code) from 1.2.0 to 1.2.2. - [Release notes](https://github.com/arthurfiorette/tinylibs/releases) - [Commits](https://github.com/arthurfiorette/tinylibs/commits/object-code-v1.2.2/packages/object-code) --- updated-dependencies: - dependency-name: object-code dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
⚡ Axios Cache Interceptor
Axios Cache Interceptor is a small and efficient cache interceptor for axios.
import Axios from 'axios';
import { setupCache } from 'axios-cache-interceptor';
// same object, but with updated typings.
const axios = setupCache(Axios);
const req1 = axios.get('https://api.example.com/');
const req2 = axios.get('https://api.example.com/');
const [res1, res2] = await Promise.all([req1, req2]);
res1.cached; // false
res2.cached; // true
Documentation at axios-cache-interceptor.js.org 🎉🎉
License
Licensed under the MIT. See LICENSE for more informations.
Contact
See my contact information on my github profile or open a new issue.
Languages
TypeScript
97.2%
JavaScript
1.5%
Shell
1.3%