zalmoxisus / remote-redux-devtools

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

Remote-redux-devtools doesn't work #89

Closed daryn-k closed 7 years ago

daryn-k commented 7 years ago

Remote-redux-devtools doesn't work for server-side rendering app. I did everything according to the documentation! But getting everytime "No store found. Make sure to follow the instructions."

It works well for app without PRELOADED_STATE from server

zalmoxisus commented 7 years ago

Did you figure it out? What was the problem?

daryn-k commented 7 years ago

I don't know. I didn't touch anything. Devtool started to work after a while.

zalmoxisus commented 7 years ago

It was a network issue then, our public server could be overloaded. You can use a local server instead.

daryn-k commented 7 years ago

Working with react-redux is worst thing I ever met!

kkammili commented 5 years ago

Try using redux-devtools-extension

example: import logger from 'redux-logger' import {composeWithDevTools} from 'redux-devtools-extension'

export const history = createMemoryHistory() const middlewares = [ thunk, routerMiddleware(history), logger ]

const store = createStore( reducer, Map(), composeWithDevTools( applyMiddleware(...middlewares) ) )

export default store