krakenui / octopus-immutable-store

Customize immutable redux store by KrakenTeam!!!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Customize immutable redux store by KrakenTeam!!!


Languages

Language:TypeScript 86.9%Language:JavaScript 13.1%