'what debugging tool you are using for react native app development

Hi guys what debugging tools you use for react native?

i also want to get ram usage of the app what is your recommended app?



Solution 1:[1]

I like to use Flipper which is a great debugging tool for react-native. For analyising network requests made by your application, Flipper's network plugin is very useful. For Android there exists a LeakCanary Plugin that enables support for LeakCanary, an open source memory leak detection library for Android, within Flipper.

For monitoring memory usage, I usually use XCode for iOS and Android Studio for Android directly.

  1. For iOS: Start your App using XCode and launch Instruments via Xcode, choose Xcode > Open Developer Tool > Instruments.
  2. For Android: Start your App using Android Studio and open the Android memory profiler.

For performance profiling specifically there is a good documentation in the official react-native documentation.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 David Scholz