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 changed "Not that to set fields..." to "Note that to set fields..." in README.md.

I tried a basic MongoDB feature: https://stackoverflow.com/questions/47544446/omit-certain-field-in-an-array-mongo-query I want to exclude a field inside a array, but unfortunately it does not work in NeDB. **Code example:** ```javascript const test_db =...

I found this strange sort of behavior/bug in my Electron + ReactJS app. When I delete an item from the database using `db.update(..., {$unset: ...})`, everything works fine during that...

我在Electron渲染进程中使用了nedb,并且设置了filename属性为/app/data.db,但是数据并没有出现在我设置的/app目录下,而是使用了浏览器的"indexedDB"。请问如何才能将数据以文件形式保存在指定的目录中

Heavily inspired by the work of @mitsos1os, I needed this feature for a project but it was lost amongst a large set of commits and never pulled. Hopefully this fits...

0 So I switched from working on a mac to working on windows and this weird bug popped up. I have a database(Compendium) and on render of a React component...

NeDB's cache breaks features in my app, How do I stop it from using cache?

As discussed in https://github.com/louischatriot/nedb/issues/93, this adds compound indexes. I went with detecting whether `fieldName` is an array, rather than also having a `fieldNames` property in `ensureIndex`. Either way (or another...

how to do a full text search?

Hello @louischatriot I'm using nedb on quite a heavy load and feel like it doesn't run as fast as it supposes to. with every operation (CRUD), nedb tries to read...