-
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
Stable Alternative - for anyone coming here new! #151
Comments
In case anyone is using redux-toolkit I did, the way worked for me
|
It does not seem to work anymore. I'm not getting any logs. |
Not working for me. I'm using react native debugger on react native + expo. This is my package.json:
My store file looks like this: import { configureStore } from "@reduxjs/toolkit";
import { compose } from 'redux';
import holdingAreaStraightReducer from "./slices/holdingAreaStraight";
import workoutSelectorSelectedExercisesReducer from "./slices/workoutSelectorSelectedExercises";
import devToolsEnhancer from 'remote-redux-devtools';
const store = configureStore({
reducer: {
holdingAreaStraight: holdingAreaStraightReducer,
workoutSelectorSelectedExercises: workoutSelectorSelectedExercisesReducer,
},
enhancers: [devToolsEnhancer({
realtime: true,
})],
});
export function subscribeListener(listener: () => void): () => void {
return store.subscribe(listener);
}
export type RootState = ReturnType<typeof store.getState>
export type AppDispatch = typeof store.dispatch;
export default store; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm from the vue.js ecosystem, where the devtools are maintained really well, also there is an electron-standalone (https://devtools.vuejs.org/guide/installation.html#standalone)...
I had to try redux for a nodejs app, and I had hard-time making the remote-redux work with various combinations... esp got the socket error etc etc..
Noticed the below (reply to a old issue couple of years ago) and it worked like a charm.. Any new comers, don't forget to check this out if you are stuck!
https://github.com/TyrealGray/remoteredux-standalone
Thanks to @TyrealGray
EDIT: Alright, I did manage to make it work without the above standalone alternative.
DevTool
npm install --save-dev @redux-devtools/cli
"scripts": { "redux-devtools": "redux-devtools --open=electron --hostname=localhost --port=8000" }
Enable remote in store (simple version)
For advanced version, check https://github.com/zalmoxisus/remote-redux-devtools
Feedback for maintainers - please consider updating:
Please remove "connect via remotedev.io" as it looks like it hasn't been maintained in a very long time, as a matter of fact, click on "http://zalmoxisus.github.io/monitoring/" which is displayed on remote-redux-devtools homepage (or) "http://remotedev.io/local" which is displayed under heading Monitoring has some human-test, and then loads INAPPROPRIATE CONTENT.
Update link in main redux-devtools repo, where it mentions "...a standalone app..." to the @redux-devtools/cli page (instead of the current link that take to an outdated monitor app)
The text was updated successfully, but these errors were encountered: