react-nativereduxredux-devtoolsredux-devtools-extension

Redux devtools on a hermes react-native app


I want to use redux devtools on our react-native app that's using react-native 0.67.1 and hermes.

I don't mind using any known tools (like react-native-debugger, or flipper), but I was blocked on pretty much all of my attempts by various issues so far.

The community is currently on a weird state where:

Is there any way to use redux devtools with a hermes react-native a on 2022?

Here's our code:

    const enhancer = composeWithDevTools(
        applyMiddleware(createDebounce(), thunk, acuityMiddlewareCreator),
        // devTools(remoteDevToolsConfig),
    );
    const store = createStore(persistedReducer, initialState, enhancer);


Solution

  • We ended up using Redux Debugger Plugin for Flipper

    We're not REALLY into flipper, but it looks like it get's the job done for us and it's stable. enter image description here