functional-models-orm-memory
v3.0.5
Published
An in-memory datastore adapter for functional-models
Maintainers
Readme
Functional Models ORM Memory
An ORM datastore adapter that is in-memory.
Useful for testing and some caching applications.
To Install
Run
npm install functional-models-orm-memoryTo Use
import { datastoreAdapter as memoryDatastore } from 'functional-models-orm-memory'
import { createOrm } from 'functional-models'
const datastoreAdapter = memoryDatastore.create()
const orm = createOrm({ datastoreAdapter })