Questions tagged [redux-devtools]

Redux DevTools is a live-editing time travel environment for [tag:redux]. Not to be confused with [tag:redux-devtools-extension] for Chrome and Firefox. Redux DevTools must be integrated into your project.

Redux DevTools is a live-editing time travel environment for . Not to be confused with for Chrome and Firefox. Redux DevTools must be integrated into your project.

Resources

117 questions
0
votes
2 answers

Working with Redux Dev Tools extension and Typescript

I'm converting my project to Typescript. This has always worked for me in JS. /* ##################### */ /* #### REDUX STORE #### */ /* ##################### */ const store = createStore(rootReducer, { // INITIAL STATE GOES…
cbdeveloper
  • 27,898
  • 37
  • 155
  • 336
0
votes
2 answers

Using Ngrx DevTools with Ionic 5

I am trying to follow this link to use the Ngrx DevTools. But Ionic uses @ionic/angular-toolkit, and we need to enable the Ngrx Schematics which replaces that. Is there a way to have both? Changes in Angular.json "cli": { --"defaultCollection":…
MMJ
  • 768
  • 5
  • 7
0
votes
1 answer

Can't add tracing functionality in Redux with Next.js

I'd like to add the tracing functionality to my dev tools in Redux: However I when doing this: export default () => { let store; const isClient = typeof window !== 'undefined'; if (isClient) { const { persistReducer } =…
0
votes
1 answer

Router navigation takeing a long time when i disable redux-devtools

I am working on a app with angular 8 and ngrx . Everything was smooth until I tested my app in Incognito mode . Suddenly a url started to work very slow almost 50 seconds between navigation start and navigation end . I observed enabling…
Tausif
  • 123
  • 1
  • 3
  • 10
0
votes
2 answers

How to connect Redux Devtools to someone else's app

I know that the typical way to enable redux devtools on a web app is to configure it when creating your store. There are many examples of how to do this online. What I'm wondering is, is there any method / hack I can employ to try to connect Redux…
shmth
  • 458
  • 3
  • 11
0
votes
1 answer

Is there a way to connect to existing store instance

I want to connect to the existing store instance in development mode to dispatch some actions to simulate the production environment. I tried using: https://github.com/zalmoxisus/redux-devtools-extension/blob/master/docs/API/Methods.md#connect but…
michal-lipski
  • 81
  • 1
  • 7
0
votes
1 answer

ngrx/store-devtools actionsBlocklist

Hello I would like not display one of my actions in extension Redux DevTools. I thought I could do it with property actionBlocklist but when I wrote this: StoreDevtoolsModule.instrument({ maxAge: 25, logOnly: environment.production, …
Lukasz
  • 63
  • 8
0
votes
1 answer

Redux dev tool crashing when I use this action

I'm working on react/redux for some months, and I create this generic method which is a setState like but for redux state. It work well, but it when I try to use redux dev tools, it crashed. Is there some obvious reason for that ? I don't have any…
LexaGC
  • 110
  • 3
  • 13
0
votes
1 answer

What do red items with a line through them mean in redux-devtools?

I'm having this issue after calling an action, my data is being erased, somebody knows what means this?
Ralph
  • 33
  • 4
0
votes
1 answer

StoreDevTools crash on an older setup

I am trying to instrument StoreDevTools with an oldish version of Angular (4.1.x) and @ngrx/store (5.2.0). The zone.js version installed is 0.8.29 If I do the recommended way (ie. after StoreModule and EffectsModule) (app.module.ts): …
user776686
  • 7,933
  • 14
  • 71
  • 124
0
votes
2 answers

MERN stack webapp showing blank screen Android-mobile browser, as React-Redux frontend, Node-Express backend

I have built up WebApp in MERN stack with MongoDB, Express, React, Nodejs. I hosted it to Heroku-Cloud as https://connectgeeks.herokuapp.com. Github-repo of the project- Find_Geeks. it works on my Desktop browsers but can't run on any Android…
GD- Ganesh Deshmukh
  • 1,456
  • 3
  • 24
  • 36
0
votes
1 answer

Why initialState doesn't show undefined fields but keeps null fields in redux?

During development, I've found that fields in intialState gets eliminated from redux devtools as I declare them undefined. However, when I declare them as null, they appearing back again in the devtool. Why it is happening? My initial state…
Tomer
  • 1,521
  • 1
  • 15
  • 26
0
votes
0 answers

Can't import lazy-loaded module's state from json using Redux DevTools

I'm developing an application using Angular and ngrx with redux DevTools for Chrome. My application has also a lazy-loaded module and I configured it like this: @NgModule({ imports: [ CommonModule, FormsModule, …
user3471528
  • 3,013
  • 6
  • 36
  • 60
0
votes
1 answer

Debugging Redux using Chrome Devtools in Node.js

When using the redux-devtools-extension in my web app's codebase, I'm able to debug Redux actions and state changes in the browser. If I run Node.js with --inspect and debug in Chrome, I expect to see the same behavior, but I only see the…
0
votes
1 answer

JSX syntax inside custom node_module cannot be parsed

I have a PARENT project (UI written using React) that imports its Redux store from an IMPORTED npm package. index.js PARENT project: import React from 'react'; import ReactDOM from 'react-dom'; import Root from './containers/Root'; import…
Peter G.
  • 7,816
  • 20
  • 80
  • 154