nedb icon indicating copy to clipboard operation
nedb copied to clipboard

The JavaScript Database, for Node.js, nw.js, electron and the browser

Results 100 nedb issues
Sort by recently updated
recently updated
newest added

I have two sets of arrays inside my document entry it appears $push behaves like $set when trying to push a single item into multiple arrays `DB.update({ _id: docId },...

Hello! I have a document , one of its properties is Float32Array. ex document before insert: ``` { name: 'Test', data: Float32Array [ 0.00045, -0.122, ... ] } ``` After...

if i have dataset like this ```js { "_id": "abcd1234", "name": "randomStuff", "list": [ { "name": "the first element", "value": "1234" }, { "name": "the second element", "value": "5678" }...

On **Windows**: - Datastore configured with corruptAlertThreshold=0 - replace any db file content with one line without enter (e.g. "a") - start the app - notice that "a" is removed...

Thanks for such a great json database! In using in my project, sometimes many type errors may be throwed in one function, but I can't using `instanceOf` to assert the...

## ENV * Browser:Chrome for android latest * System:Android 8.1 ## Problem Initial loading time too long,50s-80s ## Code ```js console.time(`[NEDB] Table "${table_name}" load cost time:`); this._db = new Nedb({...

Added an option for selecting the index position of the push & pop operations. Example: > { _id: 'id10', planets: ['Earth', 'Venus', 'Mars'] } Initial Array ``` db.update({_id: "id10"}, {$push...

Trying to build an app in electron using NEDB. I have this odd situation where a callback isn't called until you trigger a 'force reload' in the electron window. Steps...

Hello guys, I am new to Ne Db and I am trying to create an Electron app. The db that I am using is currently storing 500kb of data for...