Angular 1.x Redux: Integrate Redux Devtools

InstructorLukas Ruebbelke

Share this video with your friends

Send Tweet

In this lesson, we are going to learn how to integrate Redux Devtools into our Angular application.

Redux Devtools is a live-editing time travel environment for Redux. Devtools boasts a list of awesome features but my two favorite ones are that we can inspect every state and action as it happens and we can go back in time by “cancelling” actions.

This is going to be an interesting lesson because, in order for this to work, we are going to need to make something that was written for React work in Angular. For the most part, everything will play side by side with one small trick that we will pull off at the end to force an Angular digest cycle when React manipulates the application store.

Francesco Pipita
~ 7 years ago

Hi Lukas and thanks for making this course.

I have a question/doubt about the last part of this video: since arrow functions have static bound this and no arguments object, shouldn't we use a normal function to monkey patch the DockMonitor.prototype.componentDidUpdate method?