@miniflare/cache
v2.14.4
Published
Cache module for Miniflare: a fun, full-featured, fully-local simulator for Cloudflare Workers
Downloads
409,375
Maintainers
Readme
@miniflare/cache
Cache module for Miniflare: a fun, full-featured, fully-local simulator for Cloudflare Workers. See ✨ Cache for more details.
Example
import { Cache } from "@miniflare/cache";
import { Response } from "@miniflare/core";
import { MemoryStorage } from "@miniflare/storage-memory";
const cache = new Cache(new MemoryStorage());
const key = "http://localhost";
const res = new Response("body", {
headers: { "Cache-Control": "max-age=3600" },
});
await cache.put(key, res);
const cachedRes = await cache.match(key);
console.log(await cachedRes.text()); // body