I'm curious to know what are the core challenges, if any, you went through, or you would go through; and the checklist of sorts that you would follow ... when making the decision of switching the libraries — for instance, a Flux implementation to Redux, or Redux to MobX; any experiences?
Michel Weststrate
JS / TS fanatic. Creator of MobX
I've heard from people migrating from Redux to MobX in production apps. You can use them side by side and migrating first a few components with their local state, and then feature by feature should go well. To get an idea: you can connect to a Redux store and then receive the new props and put them in some observables by a smart component which you pass down the component tree. The other way around you should be able to dispatch Redux actions from observer components.