remote-redux-devtools icon indicating copy to clipboard operation
remote-redux-devtools copied to clipboard

Some configuration mistakes in my React-Native project?

Open naivehhr opened this issue 8 years ago • 5 comments

Hello,I just started using devtools. I can see the store-tree in Chat ,but I don't see any response in Inspector when I click the Add button... Thanks

const store = createStore(
    reducers,
    initialState,
    compose(
      applyMiddleware(thunk),
      devTools()
    )
  );

1

naivehhr avatar Aug 22 '16 15:08 naivehhr

That's related to https://github.com/jhen0409/remote-redux-devtools-on-debugger/issues/14.

In [email protected] there's a bug, which blocks any websockets when in dev mode. You have to click "Stop Remote JS Debugging" to get it work.

zalmoxisus avatar Aug 22 '16 16:08 zalmoxisus

Seems that problem is solved on [email protected]. @naivehhr, could you please confirm?

zalmoxisus avatar Sep 02 '16 14:09 zalmoxisus

Thanks for your reply~ Recently a little busy work, I will continue to focus on this problem. “Stop Remote JS Debugging” didn't work for me, I will be in the futureon [email protected] keep trying.☺

naivehhr avatar Sep 05 '16 12:09 naivehhr

Same here, "Stop Remote JS Debugging" didn't fix it either :(

Both the console and react elements inspector work, only the redux inspector part is blank.

alfredoreduarte avatar Sep 09 '16 00:09 alfredoreduarte

only the redux inspector part is blank

Most likely, you don't have process.env.NODE_ENV === 'development'. In this case just set realtime parameter to true, and don;t forget to exclude devtools from production.

zalmoxisus avatar Sep 09 '16 07:09 zalmoxisus