1.0.4 • Published 6 months ago

store-unit v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months 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

6 months ago

1.0.3

2 years ago

1.0.3-1

2 years ago

1.0.3-0

2 years ago

1.0.2

2 years ago

1.0.2-0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago