0.4.4 • Published 4 years ago
primate-json-store v0.4.4
Primate JSON store
This store module facades JSON files, allowing you to work with their structured data.
Installing
npm install primate-json-storeUsing
Import the module and instance a store with name (JSON filename) and path
(path to directory).
import JSONStore from "primate-json-store";
export default new JSONStore({"name": "app.json", "path": "/tmp"});A collection in this store is a keyed subobject.
{
"post": [
{"_id": "1", "title": "Last day at school", "text": "Today was ..."}
],
"comment": [
{"_id": "1", "post_id": "1", "text": "Very interesting read!"}
]
}License
BSD-3-Clause