A ponyfill for the Storage API, utilizing SQLite
bun install bun-storage
createLocalStorage(dbFile: string)
createSessionStorage()
Example:
import { createLocalStorage, createSessionStorage } from 'bun-storage';
const localStorage = createLocalStorage('./db.sqlite');
const sessionStorage = createSessionStorage();
This work is licensed under The MIT License.