How can I view network requests (for debugging) in React Native?

I’m not sure why no one has pointed out this solution so far. Use React Native Debugger – https://github.com/jhen0409/react-native-debugger! It is the best debugging tool for React Native in my opinion and it gives Network Inspection out of the box.

Take a look at these screenshots.

Right click and select ‘Enable Network Inspect’
Enabling Network Inspect

Right click and select ‘Enable Network Inspect’
Enabling Network Inspect

Debug away!
Network Inspect in action

Leave a Comment