1.0.1 • Published 9 years ago

factis-store-group v1.0.1

Weekly downloads
2
License
BSD-3-Clause
Repository
github
Last release
9 years ago

npm.io

Be sure to check http://factis.io for more information and documentation !

Factis store group

This module is a datastore for Factis, the modular database system.

The group store allows to group several stores into a single store.

Installation

Using NPM

npm install factis-store-group

Usage

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);