dottystore
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

SimpleStore

A simple key:value store that supported dotted anotation thanks to dot-prop.

Installation

Via npm on Node:

npm install dottystore

Reference in your program:

const { Store } = require('dottystore')

Usage

const store = new Store()
 
store.set('some.value', true)
console.log(store.get('some.value')) // == true

Development

git clone git@github.com/loicmahieu/dottystore.git
cd dottystore
npm install
npm test

Contribution

Feel free to file issues and submit pull requests - contributions are welcome.

Dependencies (3)

Dev Dependencies (8)

Package Sidebar

Install

npm i dottystore

Weekly Downloads

5

Version

1.0.0

License

MIT

Unpacked Size

3.7 kB

Total Files

4

Last publish

Collaborators

  • loicmahieu