1.0.1 • Published 3 years ago

octopus-immutable-store v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

octopus-immutable-store

NPM version npm download

Install

octopus-immutable-store

npm install --save octopus-immutable-store

Features

- Customize immuatble redux store
- Durable redux store

Install

  • Install octopus-immutable-store
npm install octopus-immutable-store

How it work

Override process env

  • Init redux store instance:
import { initRootStore } from "octopus-immutable-store";

initRootStore(store);
  • Get current state:
import { getRootState } from "octopus-immutable-store";

getRootState();
  • Dispatch a action as root:
import { rootDispatch } from "octopus-immutable-store";

rootDispatch(type, payload);
  • Dispatch a debounce action as root:
import { debounceRootDispatch } from "octopus-immutable-store";

debounceRootDispatch(type, payload, wait = 2000);

LICENSE

MIT