1.0.4 • Published 2 years ago

store-unit v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

store-unit

A watchable store unit

Install

npm install store-unit

Getting Started

import { Store } from "store-unit";

const initialValue = { count: 42 };

const store = new Store(initialValue);

const unlisten = store.on("change", (newState, previousState) => {
  updateSomething(state);
});

// Stop listening:
unlisten();
1.0.4

2 years ago

1.0.3

3 years ago

1.0.3-1

3 years ago

1.0.3-0

3 years ago

1.0.2

3 years ago

1.0.2-0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago