3.0.1-alpha1 • Published 4 years ago

cobox-group-store v3.0.1-alpha1

Weekly downloads
1
License
AGPL-3.0-or-later
Repository
-
Last release
4 years ago

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