dottystore
v1.0.0
Published
A simple key:value store that supported dotted anotation
Readme
SimpleStore
A simple key:value store that supported dotted anotation thanks to dot-prop.
Installation
Via npm on Node:
npm install dottystoreReference in your program:
const { Store } = require('dottystore')Usage
const store = new Store()
store.set('some.value', true)
console.log(store.get('some.value')) // == trueDevelopment
git clone [email protected]/loicmahieu/dottystore.git
cd dottystore
npm install
npm testContribution
Feel free to file issues and submit pull requests - contributions are welcome.
