We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I installed the application, configured the port, but can not see anything in the state. Restart does not help.
environment: vsCode 1.12.1 typescript: 2.3.2 node: 7.4.0 webpack: 2.5.1
Screenshots:
The text was updated successfully, but these errors were encountered:
Um...it seems you didn't have a remotedev server running on your localhost, and you did not compose your remote-redux-devtools middleware as well.
remotedev
remote-redux-devtools
Please try following steps to setup:
npm install remotedev-server remote-redux-devtools --save-dev
const remotedev = require('remotedev-server'); remotedev({ hostname: 'localhost', port: 8080, });
node remotedev.js
import {createStore, applyMiddleware} from 'redux'; import {composeWithDevTools} from 'remote-redux-devtools'; let compose = composeWithDevTools({ realtime: true, name: 'Your Instance Name', host: 'localhost', port: 8080, }); const store = createStore( yourReducer, compose( applyMiddleware(...), persistState(...) ) );
vscode-redux-devtools
Sorry, something went wrong.
No branches or pull requests
I installed the application, configured the port, but can not see anything in the state. Restart does not help.
environment:
vsCode 1.12.1
typescript: 2.3.2
node: 7.4.0
webpack: 2.5.1
Screenshots:



The text was updated successfully, but these errors were encountered: