包详细信息

@miniflare/storage-file

cloudflare498.9kMIT不推荐使用2.14.4

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

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

cloudflare, workers, worker, local

自述文件

@miniflare/storage-file

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

Example

import { KVNamespace } from "@miniflare/kv";
import { FileStorage } from "@miniflare/storage-file";

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

更新日志

docs/CHANGELOG.md