@d1testflare/storage-memory
v2.9.0
Published
In-memory storage module for Miniflare: a fun, full-featured, fully-local simulator for Cloudflare Workers
Downloads
80
Maintainers
Readme
@d1testflare/storage-memory
In-memory storage module for Miniflare: a fun, full-featured, fully-local simulator for Cloudflare Workers.
Example
import { KVNamespace } from "@d1testflare/kv";
import { MemoryStorage } from "@d1testflare/storage-memory";
const ns = new KVNamespace(new MemoryStorage());
await ns.put("key", "value");
console.log(await ns.get("key")); // value