cobox-group-store
v3.0.1-alpha1
Published
A store for multiple cobox groups
Downloads
5
Readme
cobox-group-store
A repository for your cobox-groups. Adhere's to a standard CRUD repository pattern.
API
const Store = require('cobox-group-store')
const storage = 'path/to/storage' // defaults to storage path defined in cobox-constants package
const store = Store(storage)
let groups = await store.all() // ensures groups loaded, then returns an array of cobox-groups
await store.findBy({ name, address })
await store.where({ name, address })
await store.create({ name, address })