Open samsoul16 opened 5 years ago
What i have setup : redux, react-redux, react-redux-firebase, redux-firestore and redux-devtools-extension
redux, react-redux, react-redux-firebase, redux-firestore and redux-devtools-extension
What is working : Redux devtools in chome and firefox
Redux devtools in chome and firefox
The issue :
What i want help in achieving : To just be able to use the remote feature so that i can debug in Browser as it currently works but also be able to connect to vscode and use redux devtools there instead for faster development.
My list of Dependencies
"dependencies": { "firebase": "^6.0.1", "react": "^16.8.6", "react-dom": "^16.8.6", "react-redux": "^7.1.0-alpha.4", "react-redux-firebase": "^3.0.0-alpha.12", "react-router-dom": "^5.0.0", "react-scripts": "3.0.0", "redux": "^4.0.1", "redux-devtools-extension": "^2.13.8", "redux-firestore": "^0.7.3", "redux-thunk": "^2.3.0" },
Current Setup of redux-devtools
import { createStore, applyMiddleware } from "redux"; import { composeWithDevTools } from "redux-devtools-extension"; import thunk from "redux-thunk"; import rootReducer from "./reducers/rootReducer"; const composeEnhancers = composeWithDevTools({ name: "Remote Dev Tools", realtime: true, // hostname: "localhost", // port: 3000 }); export const store = createStore( rootReducer, composeEnhancers(applyMiddleware(thunk)) );
Some knowledge i have learn't
remote-redux-devtools
redux-devtools-extension
bump
What i have setup :
redux, react-redux, react-redux-firebase, redux-firestore and redux-devtools-extension
What is working :
Redux devtools in chome and firefox
The issue :
What i want help in achieving : To just be able to use the remote feature so that i can debug in Browser as it currently works but also be able to connect to vscode and use redux devtools there instead for faster development.
My list of Dependencies
Current Setup of redux-devtools
Some knowledge i have learn't
remote-redux-devtools
but not inredux-devtools-extension