Debugging a RN app is harder than working with a web app, because everything you want to do is done remotely; you cannot just run a fully powered debugger in your mobile device. There are several tools that can help you out with this, and in this section, we'll consider a "catch-all" tool, react-native-debugger, that includes a powerful trio of utilities, with which most (if not all) of your requirements should be fulfilled.
The basic tools you'll require for thorough debugging (and we already met them earlier) would be the following:
- Chrome Developer Tools, at https://developers.google.com/web/tools/chrome-devtools/, for access to the console and more
- React devtools (in its standalone version) at https://github.com/facebook/react-devtools, for dealing with components
- The Redux DevTools extension, at https://github...