Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Building Applications with React and Redux Putting it all Together Adding Redux DevTools

Carl Hand
Carl Hand
574 Points

In a production environment, can redux record the users actions?

If so, does that mean that a developer could step through the users sequence of events, using the slider in the redux tools, in order to find out how exactly a bug was raised?

1 Answer

Tom Geraghty
Tom Geraghty
24,174 Points

Yes, but not without them providing the information. So, no, it's not a way for a software dev to monitor the actions taken by the end user of our applications. But you can build in reporting systems that provide Redux Dev Tools logs which you as a dev can load and walk step by step through their actions to determine what caused the bug.

More resources here and here