locallydb
locallydb copied to clipboard
An easy-to-use and lightweight local storage database for node.js and node-webkit
Current upsert method contains the following code: ``` if (check.length > 0) { .. do update... } else { .. do insert... } ``` But 'check' variable is an object,...
Is there a way to use the `.where` where one can find all items with an array having a specific value? lets say for ``` collection.insert([ {name: "sphinx", mythology: "greek",...
Please throw exception when insert with an existing _id. This could keep the _id unique.
I am trying to create something extremely simple, just a collection that has a name and that persons FCM ID. So in Node I have... ``` const locallydb = require('locallydb')...