blob_kv
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
This module provides the BlobVKvStore
class, a KvStore
implementation
built on top of Val Town's blob storage. Here's how to use:
import { createFederation } from "jsr:@fedify/fedify@^1.4.3";
import { BlobKvStore } from "https://esm.town/v/minhee/blob_kv";
import { blob } from "https://esm.town/v/std/blob";
const federation = createFederation<void>({
kv: new BlobKvStore(blob),
});
Migrated from folder: fedify/blob_kv