@luvio/durable-store-idb
v0.160.1
Published
IndexedDB-based implementation of the Luvio DurableStore
Maintainers
Keywords
Readme
durable-store-idb
An implementation of the Luvio DurableStore based on IndexedDB.
Install
npm i @luvio/durable-store-idbUsage
import { IndexedDbDurableStore } from '@luvio/durable-store-idb';
const durableStore = new IndexedDbDurableStore();
const luvio = new Luvio(
makeDurable(new Environment(new InMemoryStore(), networkAdapter), {
durableStore,
})
);