gazo-store
v0.15.0
Published
Data store related functions.
Readme
GAZO Store
Data store related functions.
Install
npm install gazo-store --saveUse
const gazoStore = require('gazo-store')
const store = gazoStore.connect(options)Add data to the store
store.add('user', {username: 'johndoe'})Find all
store.findAll('user')Find by id
store.find('user', 'c2ec6c39-1776-49b3-8eff-7ff13818aafc')