24 ms·
People who despice react because of redux(Boilerplate) should try mobx.
by npmn 7y ago
People who despice react because of redux(Boilerplate) should try mobx.
- s_y_n_t_a_x 7y agoOr you know, use Redux because the boilerplate is gone... https://redux-toolkit.js.org/ https://redux-toolkit.js.org/ You don't have to create actions or constants anymore, you just create your reducer functions and selectors, then use hooks to select and dispatch in your components. Never got why people took up a completely different paradigm just because they couldn't figure out how to reduce their boilerplate...
- kls 7y agoOr use XState as Redux is only a half implementation of a state machine. It get's the job done but a state machine gives you far more structure and comprehensibility around state management. https://github.com/davidkpiano/xstate https://github.com/davidkpiano/xstate
- s_y_n_t_a_x 7y agoWhich is great because you don't need a full state machine. React can be that other half...