Be sure to check http://factis.io for more information and documentation !
This module is a datastore for Factis, the modular database system.
The group store allows to group several stores into a single store.
Using NPM
npm install factis-store-group
Require the module
var FactisGroup = require('factis-store-group');
Create a new group by selecting some stores
var myGroup = new FactisGroup([store1,store2,...,storeN]);
You can also add stores to the group afterwards
myGroup.addStore(anotherStore);