npm install --save octopus-immutable-store
- Customize immuatble redux store
- Durable redux store
- Install octopus-immutable-store
npm install octopus-immutable-store
- 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);
MIT