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
1
vote
1 answer

Angular app with NgRx not working properly without redux devtools extension

If I have redux devtools disabled the app page is not rendering properly until I click anywhere inside the page. It does not display any error on my console. My store module is imports: [ StoreModule.forRoot(reducers, { metaReducers }), …
1
vote
1 answer

Unable to view state data in redux dev tools

I am learning redux and came up with an example using a webservice that returns data. Everything is working. However I configured the redux developer tools below. I got an error saying my store is assigned a value but never used and when I go…
Baba
  • 2,059
  • 8
  • 48
  • 81
1
vote
1 answer

Enable extension programmatically in incognito mode on ubuntu

We are setting kiosk-type workstations with chromium browser running in incognito mode. There is a need to have redux-devtools extension for development purposes. We managed in install it using scripts. Basically uploaded bundles and manifest.json…
1
vote
2 answers

Redux DevTools could not render

I am using redux-devtools with redux-devtools-dock-monitor and redux-devtools-log-monitor. I followed documentation. However, in the console I receive this error: index.js:1452 Redux DevTools could not render. You must pass the Redux store to…
Safarali
  • 11
  • 1
1
vote
1 answer

dispatching redux action in middleware cause unexpected behavior

I am trying to understand how redux middleware works, during my experiment I have noticed that dispatching an action from redux middleware may result in an unexpected behavior. I will try to explain the problem by simulating file upload as…
cyrus-d
  • 749
  • 1
  • 12
  • 29
1
vote
0 answers

Angular e2e fails with 'Angular can't be found' because of Redux enhancer?

I have an angular application that is boilerplate, nothing meaningful, literally the 'welcome' template. I'm trying to run ng e2e but it fails, checking the chrome tab console before it disappears show me the same error I get when I have redux dev…
SebastianG
  • 8,563
  • 8
  • 47
  • 111
1
vote
1 answer

NativeScript + ngrx store + remote devtools

I'm building mobile app using NativeScript with Angular 2 and TypeScript. My IDE is VS Code. I decided to use @ngrx/store to keep state of the application. However there is a problem with debugging store state. I'd like to use redux-devtools and…
dzwonu
  • 119
  • 11
1
vote
1 answer

electron cant add redux dev tools, uncaught exception: SyntaxError: Octal literals are not allowed in strict mode

Im trying to add redux dev tools to my project (so I can work better with ngrx 4). I looked online how to add a dev tool to electron, found 2 ways: 1) using electron dev tools installer electron dev tools installer 2)Manually, like how the docs…
Ziv Glazer
  • 786
  • 2
  • 8
  • 24
1
vote
1 answer

Adding redux-thunk cause remote-redux-devtools not to work

When I add redux-thunk to my react native project, my redux remote devtools does not hold any state. The state says undefined in the remote devtools window. Previously (devtools working): const store = createStore( reducer, initialState, …
user2602079
  • 1,283
  • 5
  • 20
  • 39
1
vote
1 answer

Unable to resolve module remote-redux-devtools

I'm about to set up remote debugging for a react-native app. I've added remote-redux-devtools module and also imported it. Does anyone know why am I getting the following error: UnableToResolveError: Unable to resolve module remote-redux-devtools…
haxpanel
  • 4,402
  • 4
  • 43
  • 71
1
vote
1 answer

Redux Dev Tools failing when embedding inside Provider alongside React Router

I was following the Redux tutorials creating the Todo app and I tried applying Redux Dev Tools and tried embedding it under my Provider alongside React Router however I get this error: Warning: Failed prop type: Invalid prop `children` of type…
JohnnyQ
  • 4,839
  • 6
  • 47
  • 65
1
vote
2 answers

Export / Log to error tracking service

Is there a way to get an export of the store state / actions programmatically in Production that could be imported back into dev tools? For example I can setup middleware to capture the current state and send that to something like (Trackjs,Sentry,…
Tim Arney
  • 1,776
  • 2
  • 18
  • 23
1
vote
3 answers

Getting Redux DevTools To Work

I followed the tutorial, however, am getting the console error: "Error : Expected the reducer to be a function" Here is my ( relevant ) configuration: WEBPACK.CONFIG.JS: ... const TARGET = process.env.npm_lifecycle_event; process.env.BABEL_ENV =…
Kayote
  • 14,579
  • 25
  • 85
  • 144
1
vote
1 answer

Redux Dev Tools Chrome Extension Immutable.js Causes Error

Currently, my redux setup (which utilizes Immutable.js for its state) functions completely as desired. However, the redux dev tools extension outputs the following error whenever the is opened: An error occurred in the reducer TypeError:…
Carolyn Saunders
  • 296
  • 2
  • 7
  • 15
1
vote
2 answers

Redux dev tools with redux-form

I'm using redux with redux devtool I just tried redux-form: great job and funny to use! However, I guess that each time I modify a fied, the app state changed. redux devtool saves each new key tapped in a field. it slows field refreshes a lot! Here…
Damien Leroux
  • 11,177
  • 7
  • 43
  • 57