JembaDb is a tiny, embeddable, append-only JSON database for Node.js v16.16.0+. Current version 5.1.7, actively maintained. Unlike full-featured databases, it focuses on simplicity: append-only logging and in-memory queries. Ideal for small projects, configuration, or logging scenarios where a full database is overkill.
npm install jembadbVerified import paths — ran on the pinned version, not inferred.
Shows basic usage: initialize, insert, query, and close.
Switch to ESM with `import JembaDb from 'jembadb'`.
Use `query()` to find latest entry or implement versioning.
Replace `db.find(...)` with `db.query(...)`.
Upgrade Node.js to 16.16.0+.
Use `import JembaDb from 'jembadb'` or set `"type": "module"` in package.json.
Switch to ESM: rename file to .mjs or add `"type": "module"`.
Run `npm install jembadb` and verify import path.
No dependency data recorded yet.