1.1.1 • Published 5 years ago

@freakyfriday/that-simple-objectstore v1.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

That Simple ObjectStore

CircleCI

Overview

An object persistance interface for That Simple Model

Examples of its use

More detailed documentation to follow

const objectStore = new SOMETHINGObjectStore()
const myObject = new MyModel()

objectStore.put(myObject)
objectStore.get(MyModel, "primaryKey", "secondaryKey")
objectStore.query(MyModel, {})
objectStore.remove(myObject)