-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SocketProtocolError #138
Comments
I'm having this same problem, managed to solve? |
Currently seeing the same issue |
Got tired of debugging this, and used redux-devtools-extension instead. Works great with the React Native Debugger App (if you happen to be developing for RN 😁) |
I'm using RN, thanks for the suggestion. |
I'm creating my store as follows: import { applyMiddleware, createStore } from 'redux';
import { composeWithDevTools } from 'redux-devtools-extension';
import createSagaMiddleware from 'redux-saga';
import sagas from '../sagas';
import rootReducer from '../reducers';
const sagaMiddleware = createSagaMiddleware();
export default function configureStore(preloadedState) {
const middlewares = [sagaMiddleware];
const store = createStore(rootReducer, preloadedState, composeWithDevTools(
applyMiddleware(...middlewares)
));
sagaMiddleware.run(sagas);
return store;
} |
Exactly what I tried to do, are you using google chrome extension? if so did you set anything up on it? |
Oh no, so I'm using React Native Debugger App. It bundles redux & react devtools into a single app. If you setup your store similar to how I did it, the app should work right away. You can get it here: https://github.com/jhen0409/react-native-debugger/releases Also, make sure your device/emulator, has debugging enabled. On the emulator, hit If you happen to be debugging on a device via USB/wifi and can't get the above menu show up, run the following in your terminal : |
Being able to connect to react-native-debugger is working better than before, thank you very much for your help. 😆 |
Awesome! No problem |
I'm using React Native and having this error when trying to use remote-redux-devtools. Changing to redux-devtools-extension per @camilo86 's post solved the problem right away. |
produce the error: https://github.com/ghasemikasra39/testDevTools
The text was updated successfully, but these errors were encountered: