node-json-db icon indicating copy to clipboard operation
node-json-db copied to clipboard

A simple "database" that use JSON file for Node.JS.

Results 21 node-json-db issues
Sort by recently updated
recently updated
newest added

Hello ! This library is very awesome and it is exactly what i search for my project. But i have encountered a problem with nested array objects. When i save...

I change this line 277 ~280 ```php dbData.setData(toSet); if (this.config.saveOnPush) { this.save(); } ``` to this ```php dbData.setData(toSet); if (this.config.saveOnPush) { this.save(); return toSet; } ``` if possible can add...

I'm impressed by how simple it is This is probably the best library I have ever seen

Hi all, I am using it to display and maintain some small notes. However, there is no way to trigger update, because only database access can be done in read-only...

Hello, I am trying to use the JsonDB in a electron package compiled via rollup but it seems I am unable to export the JsonDB object / methods. Can someone...

Please, make it compatible with Deno (Node JS competitor) http://deno.land/

const { JsonDB } = require( 'node-json-db' ); const { Config } = require( 'node-json-db/dist/lib/JsonDBConfig' ); var db = new JsonDB(new Config("myDataBase", true, false, '/')); var data1 = db.getData('/'); console.log(data1);...

To be able to use it in browser easily and rely on the storage mechanism there. - [ ] Create a storage "interface" - [ ] Implement driver for hard...

enhancement

Hi, So I've been using this package a few days now building a system. I'm using this package to "cache" SQL table data so I can use it locally later....