>$ npm install @fatcherjs/middleware-cache
<script src="https://cdn.jsdelivr.net/npm/@fatcherjs/middleware-cache/dist/index.min.js"></script>
import { fatcher } from 'fatcher';
import { cache } from '@fatcherjs/middleware-cache';
fatcher('https://foo.bar', {
middlewares: [
cache({
/* Options*/
}),
],
});
import { fatcher } from 'fatcher';
import { cache } from '@fatcherjs/middleware-cache';
fatcher('https://foo.bar', {
middlewares: [
cache({
ttl: 5 * 1000, // Cache in 5 seconds
}),
],
});