A dictionary to maintain objects with persistence.
Please visit the Wiki.
objectbox is a dictionary to maintain objects with persistence. objectbox will give you an unique numeric id when your object is added to the dictionary successfully. You can then use this id to find out the object from the box. objectbox uses NeDB datastore to permanently keep your objects, database is just there by default. If you don't like NeDB, objectbox allows you to use your own persistence facility as the datastore for the objects.
$ npm install objectbox --save
See Usage on the Wiki for details.
Here is an quick example of how to create a box.
var Objectbox = require('objectbox'),
boxPath = __dirname + '/database/box.db',
box = new Objectbox(boxPath, 1000);
Licensed under MIT.