fdb Simple file-based key-value storage Import // ESM import fdb from "fdb"; // CJS const fdb = require('fdb') const db = fdb(/* path to config */) await db.set('key', 'value') const value = await db.get('key') // value