Currently having a quite big React application, how would you progressively rewrite it into an Ember app ?
Ideally we would like not to have to develop the new frontend for few months and then ship it once, but rather update the app progressively and get rid of all react code over multiple iterations.
Has anyone done that yet ? What are your suggestions ?
@dynamiccast If the react app is built with redux you could look at porting it to ember with help from ember-redux. I’ve designed the connect api to mirror that of react-redux meaning you should be able to “port/rewrite” the components from react => ember and copy the reducers/middleware/enchancers directories (with literally no modification).
If you have a special createStore setup you will find ember-redux is extensible. Also most everything you would “bolt on” from the react ecosystem exists in the ember ecosystem including …