An open API service indexing awesome lists of open source software.

https://github.com/redom/redom-store

Immutable keypath store for RE:DOM
https://github.com/redom/redom-store

Last synced: about 1 year ago
JSON representation

Immutable keypath store for RE:DOM

Awesome Lists containing this project

README

          

# RE:DOM store
Immutable keypath store for RE:DOM

## Installing
```
npm i @redom/store
```

## Usage

```js
import Store from '@redom/store';

const store = new Store();

store.set('a.b.c', 'Hello RE:DOM store!');

console.log(store.get('a.b.c'));
```