SQLite-backed key-value store with JS-like object manipulation and automatic JSON serialization. · GitHub
import Database from ‘better-sqlite3’; //////////////////////////////////////// // 1. Types //////////////////////////////////////// export type SchemaDefinition = Record<string, any>; export interface CreateDBOptions { idColumn?:…