redux-devtools-extension

problem with performance ngxs and redux dev tools

☆樱花仙子☆ 提交于 2021-02-10 20:33:32
问题 I store a whole app in ngxs and this works fine. I have problem when I want to see these data in redux devtools. On first when store was small, all works fine, when store comes lager reduxdevtools works slower and slower, and now is crashes. Actual here is my json store it is no so big, but in feature with data from backend it will be have about 20-30 Mb on debug window I see these info: Application state or actions payloads are too large making Redux DevTools serialization slow and consuming

problem with performance ngxs and redux dev tools

心不动则不痛 提交于 2021-02-10 20:32:07
问题 I store a whole app in ngxs and this works fine. I have problem when I want to see these data in redux devtools. On first when store was small, all works fine, when store comes lager reduxdevtools works slower and slower, and now is crashes. Actual here is my json store it is no so big, but in feature with data from backend it will be have about 20-30 Mb on debug window I see these info: Application state or actions payloads are too large making Redux DevTools serialization slow and consuming

Need help displaying and seeing state in Redux Dev Tools

会有一股神秘感。 提交于 2021-01-07 02:41:17
问题 I posted before, and thought I'd try one more time, since I still haven't got this to work. I'm trying to get my state displayed on Redux Dev Tools (Extension). I have got the code over from the zalmoxisus GitHub, but it still doesn't seem to be working. If anyone can guide me on this, and knows how to work the Dev Tools extension, it would be a great help! 来源: https://stackoverflow.com/questions/65528025/need-help-displaying-and-seeing-state-in-redux-dev-tools

Need help displaying and seeing state in Redux Dev Tools

烈酒焚心 提交于 2021-01-07 02:40:21
问题 I posted before, and thought I'd try one more time, since I still haven't got this to work. I'm trying to get my state displayed on Redux Dev Tools (Extension). I have got the code over from the zalmoxisus GitHub, but it still doesn't seem to be working. If anyone can guide me on this, and knows how to work the Dev Tools extension, it would be a great help! 来源: https://stackoverflow.com/questions/65528025/need-help-displaying-and-seeing-state-in-redux-dev-tools

Need help displaying and seeing state in Redux Dev Tools

可紊 提交于 2021-01-07 02:39:40
问题 I posted before, and thought I'd try one more time, since I still haven't got this to work. I'm trying to get my state displayed on Redux Dev Tools (Extension). I have got the code over from the zalmoxisus GitHub, but it still doesn't seem to be working. If anyone can guide me on this, and knows how to work the Dev Tools extension, it would be a great help! 来源: https://stackoverflow.com/questions/65528025/need-help-displaying-and-seeing-state-in-redux-dev-tools

Has anyone came across this error in TS with redux dev tools? “Property '__REDUX_DEVTOOLS_EXTENSION_COMPOSE__' does not exist on type 'Window'.”?

风流意气都作罢 提交于 2020-01-01 07:39:58
问题 I'm getting this error on my index.tsx. Property ' REDUX_DEVTOOLS_EXTENSION_COMPOSE ' does not exist on type 'Window'. Here is my index.tsx code: import * as React from 'react'; import * as ReactDOM from 'react-dom'; import App from './App'; import './index.css'; import registerServiceWorker from './registerServiceWorker'; import { Provider } from 'react-redux'; import { createStore, compose, applyMiddleware } from 'redux'; import rootReducer from './store/reducers'; import thunk from 'redux