包详细信息

@miniflare/storage-memory

cloudflare481.7kMIT不推荐使用2.14.4

Miniflare v2 is no longer supported. Please upgrade to Miniflare v4

In-memory storage module for Miniflare: a fun, full-featured, fully-local simulator for Cloudflare Workers

cloudflare, workers, worker, local

自述文件

@miniflare/storage-memory

In-memory storage module for Miniflare: a fun, full-featured, fully-local simulator for Cloudflare Workers.

Example

import { KVNamespace } from "@miniflare/kv";
import { MemoryStorage } from "@miniflare/storage-memory";

const ns = new KVNamespace(new MemoryStorage());
await ns.put("key", "value");
console.log(await ns.get("key")); // value