nedb
nedb copied to clipboard
The JavaScript Database, for Node.js, nw.js, electron and the browser
is there any way to protect DB file with password?
Object keys returns and array...
This will mimic the setOnInsert functionality [mongo currently offers](https://docs.mongodb.com/manual/reference/operator/update/setOnInsert/#up._S_setOnInsert)
Ola Thanks for the wonderful library. How can I use promises on the calls?
Replica & sharding is available
I think it's common that if we have a model called User, an email is required(not empty) when creating a new User Or we would stop the creating(like throw an...
Given the dataset: ``` js {"_id": 1, "name": "Joe", "tags": ['sailing', 'chess', 'whisky', 'cheese', 'football']} {"_id": 2, "name": "Jane", "tags": ['wine', 'cheese', 'ballet', 'opera']} {"_id": 3, "name": "Mary", "tags": ['sailing',...
I'd like my datafile to be portable. I have the following: var Datastore = require('nedb') , db = new Datastore({ filename: 'datafile.nedb', autoload: true }); Data is definitely persisted, but...
Is there any way to setup npm so it doesn't load those folders on production, maybe via tampering with package.json? Currently folders such as * browser-version/test * test * benchmarks...