zalmoxisus / remote-redux-devtools

Redux DevTools remotely.
http://zalmoxisus.github.io/monitoring/
MIT License
1.8k stars 138 forks source link

While Running the reactDev tools getting error as SocketProtocolError message: "Client connection establishment timed out", code: 4007. #150

Open snevula123456 opened 2 years ago

snevula123456 commented 2 years ago

I am facing an issue while trying to debug the Application with ReactDev Tools, showing errors on the console as

SocketProtocolError {name: "SocketProtocolError", message: "Client connection establishment timed out", code: 4007, stack: "SocketProtocolError: Client connection establishme…y=false&runModule=true&app=org.name.tflrn:5244:17"}.

remote-redux-dev tools: Socket connection errors are being suppressed. This can be disabled by setting suppressConnectErrors to 'false'.

below is the ref Store Configurations.

`import { createStore, applyMiddleware, compose } from "redux"; import { composeWithDevTools } from 'remote-redux-devtools'; import thunk from "redux-thunk"; import rootReducer from "./reducer/index";

export const middleware = [thunk];

const store = createStore( rootReducer, initialState, composeWithDevTools(applyMiddleware(...middleware)) );`

ReactNative Version : 0.64.1

image

madnanpak commented 2 years ago

Has anyone fixed this issue?

ABSanthosh commented 2 years ago

Need fix or work around for this.