jsonstore
Simple disk based json document storage. Used in some examples in the allegiant app framework.
There be 🐲 here! The API and functionality are being cemented, anything before a 1.0.0 release is subject to change.
![Coverage Status](https://coveralls.io/repos/github/allegiant-js/jsonstore/badge.svg?branch=master)
Installation
npm install @allegiant/jsonstore --save
Usage
const { JSONStore } = require('@allegiant/jsonstore');
const store = new JSONStore();
store.update('foo', true);
store.get('foo');
store.destroy('foo')
Copyright & License
Copyright © 2017 Allegiant. Distributed under the terms of the MIT License, see LICENSE
Availble via npm or github.