@nostr-dev-kit/ndk-cache-dexie
TypeScript icon, indicating that this package has built-in type declarations

2.4.1 • Public • Published

ndk-cache-dexie

NDK cache adapter for Dexie. Dexie is a wrapper around IndexedDB, an in-browser database.

Usage

NDK will attempt to use the Dexie adapter to store users, events, and tags. The default behaviour is to always check the cache first and then hit relays, replacing older cached events as needed.

Install

pnpm add @nostr-dev-kit/ndk-cache-dexie

Add as a cache adapter

import NDKCacheAdapterDexie from "@nostr-dev-kit/ndk-cache-dexie";

const dexieAdapter = new NDKCacheAdapterDexie({ dbName: 'your-db-name' });
const ndk = new NDK({cacheAdapter: dexieAdapter, ...other config options});

🚨 Because Dexie only exists client-side, this cache adapter will not work in pure node.js environments. You'll need to make sure that you're using the right cache adapter in the right place (e.g. Redis on the backend, Dexie on the frontend).

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i @nostr-dev-kit/ndk-cache-dexie

Weekly Downloads

187

Version

2.4.1

License

MIT

Unpacked Size

50.1 kB

Total Files

7

Last publish

Collaborators

  • jinglescode
  • pablof7z