dependabot[bot] 8b3881fce0
chore(deps-dev): bump ts-loader from 9.3.1 to 9.4.1 (#355)
Bumps [ts-loader](https://github.com/TypeStrong/ts-loader) from 9.3.1 to 9.4.1.
- [Release notes](https://github.com/TypeStrong/ts-loader/releases)
- [Changelog](https://github.com/TypeStrong/ts-loader/blob/main/CHANGELOG.md)
- [Commits](https://github.com/TypeStrong/ts-loader/compare/v9.3.1...9.4.1)

---
updated-dependencies:
- dependency-name: ts-loader
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-24 11:45:54 -03:00
2022-06-04 17:30:51 -03:00
2022-06-05 11:26:48 -03:00
2022-03-14 17:55:20 -03:00
2022-08-02 09:20:10 -03:00
2022-06-03 08:51:19 -03:00
2022-08-17 23:03:22 -03:00
2022-01-18 12:06:20 -03:00
2022-03-11 16:31:03 -03:00
2022-01-23 16:52:26 -03:00
2022-07-29 09:47:35 -03:00
2022-05-15 20:42:49 -03:00
2022-01-07 17:33:23 -03:00
2022-03-14 17:51:47 -03:00

Help axios-cache-interceptor grow! Star and share this amazing repo with your friends and co-workers!


Issues Stars License Try on Runkit Codecov Downloads Bundlephobia Packagephobia FOSSA Status Join the chat at https://gitter.im/axios-cache-interceptor/community


  

⚡ 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.

FOSSA Status


Contact

See my contact information on my github profile or open a new issue.


Description
📬 Small and efficient cache interceptor for axios. Etag, Cache-Contol, TTL, HTTP headers and more!
Readme MIT 67 MiB
Languages
TypeScript 97.2%
JavaScript 1.5%
Shell 1.3%