nosql icon indicating copy to clipboard operation
nosql copied to clipboard

NoSQL embedded database for small node.js projects

Results 4 nosql issues
Sort by recently updated
recently updated
newest added

I am trying to use this as a store, but running into issues when trying find entries. Using Typescript. In my class I have: ` this.db = NoSQL.load(path.join(storePath,'/media-catalogue.nosql'));` then I...

Node v12.6.0 nosql v6.1.0 ` db.modify({ '+coins': 1 }, { id: 1, 'coins': 1 }).where('id', 1);` Results: 1st: `{"id":1,"coins":1}` 2nd: `{"id":1,"coins":1,"+coins":1}` Also if you specify `true` as second arg instead...

Line 2388 will cause an exception in Node.js > v10.0.0. The callback parameter is no longer optional for fs.close. Not passing it will throw a TypeError at runtime. There was...

After inserting into the nosql database (2000 records) If I try to find the records, it returns zero rows. Should I need to (release / refresh / free / reload)...