A simple JSON-based database management system for Node.js that stores data in flat JSON files. Version 0.0.34 is the latest stable release, with infrequent updates. It provides SQL-like operations (create, insert, where) but lacks advanced features like indexing, transactions, or concurrency control. Differentiates from full DBMS by being lightweight and file-based, suitable for prototyping or small projects. Not intended for production use.
npm install node-json-databaseNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a database, table with columns, inserts records, and queries with where filter.
Use only in single-process, non-concurrent environments.
Ensure correct working directory or provide absolute path.
Always call `table.create()` before using it.
Ensure inserted data matches column types exactly.
Use `import { db } from 'node-json-database'`Run `npm install node-json-database` and verify import string
Ensure `myDB = db('myDB'); myDB.create();` before using table()No dependency data recorded yet.