I created a redux wrapper for my side projects. I used it in 2 projects already and so far it does the job.
The thing was to have a no-boilerplate library for state management that is compatible with redux. Then, when complex reducers or sagas are needed I can just replace it with redux with out re-writing all state management code.
I created a redux wrapper for my side projects. I used it in 2 projects already and so far it does the job.
The thing was to have a no-boilerplate library for state management that is compatible with redux. Then, when complex reducers or sagas are needed I can just replace it with redux with out re-writing all state management code.
Codesandbox: https://codesandbox.io/s/simple-redux-js-ubnnc
The whole thing is 40 lines of code -> https://github.com/LiveDuo/simple-redux/blob/master/src/inde...