1.0.0 • Published 7 years ago
dottystore v1.0.0
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 git@github.com/loicmahieu/dottystore.git
cd dottystore
npm install
npm testContribution
Feel free to file issues and submit pull requests - contributions are welcome.