@miniflare/cache

v2.14.4
Cache module for Miniflare: a fun, full-featured, fully-local simulator for Cloudflare Workers
cloudflare workers worker local cloudworker

@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
npm i @miniflare/cache

Metadata

  • MIT
  • >=16.13
  • MrBBot
  • released 10/7/2024

Downloads