nedb
nedb copied to clipboard
The JavaScript Database, for Node.js, nw.js, electron and the browser
each time I do `database.find({})` it scrambles up the datafile e.g.: if we start with (data file name).db equaling to: ``` {"timestamp":0,"_id":"WCFTwmVybm6r0o9G"} {"timestamp":1,"_id":"5E8twe59ulwJ9pck"} {"timestamp":2,"_id":"s0eUV0Nt8JjOsHKO"} ``` and we make a `find({})`...
Is this project discontinued?
I am using Jest and Supertest to run integration tests and Jest will exit with an error. ``` Q:\redacted\portal-api\node_modules\nedb\lib\datastore.js:77 if (err) { throw err; } ^ [Error: EPERM: operation not...
Hello, I rebased the branch of @bengl regarding compound index and added some tests. https://github.com/louischatriot/nedb/issues/93
I'm trying to search string using regex as below: `db.find({ consignee: { $regex: /test/ } }, function (err, docs) {` ` console.log(docs);` `});` But it is throwing error **Error: $regex...
We developed an application using electron and nedb running in the renderer process. This app uses nedb to allow users to work offline, by downloading a copy of information provided...
Hello i am developing application witch use the nedb (by the way it's great) now the issue is i have added some new fields to the database but the previous...
I use Nedb for loading and saving notes. However, after I packaged my Electron App. Code in index.js var userData = app.getAppPath('userData'); let db_graphs = new Datastore({ filename: userData+'/graphs.db', autoload:...
How can I prevent this from happening? I need the data to persist in the exact order it was inserted, not be re-ordered by ID. Thanks for any insight!