2.9.0 • Published 2 years ago

@d1testflare/storage-file v2.9.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@d1testflare/storage-file

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

Example

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

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