How to debug React Native app?
Follow the below steps to debug React Native app:
- Run your application in the iOS simulator.
- Press
Command + D
and a webpage should open up athttp://localhost:8081/debugger-ui
. - Enable Pause On Caught Exceptions for a better debugging experience.
- Press
Command + Option + I
to open the Chrome Developer tools, or open it viaView
->Developer
->Developer Tools
. - You should now be able to debug as you normally would.
August 01, 2022
131
Read more
What is React?
November 06, 2022
ReactJSHow to programmatically trigger click event in React?
November 06, 2022
ReactJS