Skip to content

Debugging and profiling

What tools do you use to debug and profile your React Native apps?

Debugging and profiling experience & sentiment

Group by:

Sort by:

1

98.4%
1,850
2

77.9%
11.8%
9.6%
1,818
3

74.6%
19.6%
5.3%
1,833
4

65.3%
30.8%
3.2%
1,875
5

64.1%
22.8%
12.8%
1,810
Experience
  • Used it: Respondents who have used an item.
  • Heard of it: Respondents who have heard about an item, but haven't used it.
  • Never heard of it: Respondents who have never heard about an item.
Sentiment
  • Positive: Respondents who are interested in learning more about a technology; or are willing to use it again.
  • Neutral: Responents who did not indicate any sentiment about a technology.
  • Negative: Respondents who are not interested in learning more about a technology; or have used it and had a negative experience.
When you are learning a new tool, your first instinct is to print something to the console. And, for a reason. The ol’ reliable logs work just fine for quick debugging. In React Native 0.77, Meta made the controversial decision to remove logs from Metro, which were immediately brought back behind the --client-logs flag. The king is dead, long live the king! Flipper, once a powerful but frustrating tool to set up, was officially retired in React Native 0.74. It had the most negative sentiment out of all tools covered in the 2024 survey. In return in React Native 0.76 Meta introduced the new default React Native debugging experience – React Native DevTools. We expect them to grow in popularity in the future, especially with the promise of a built-in network inspector and profiling. As our favourite cliché says: “React Native is Native” so you can rely on native tooling built into Android Studio and Xcode which we often do. There are a number of interesting tools developed by the React Native community: the Reactotron, Radon IDE and Flashlight, that have a potential to gain more traction in the upcoming years.
Kacper Kapuściak & Bartłomiej Błoniarz
Software engineers at Software Mansion
We asked members of the React Native community to share their opinions about the results

Other solutions

Other debugging and profiling solutions
Freeform
What other solutions not mentioned above have you used in your React Native apps?
0%
10%
21%
31%
42%
52%
1

Proxyman

2

Charles Proxy

3

Debugging in general

4

React Native Debugger

6

ADB

7

Other Answers

Answers matching “Other Answers” 22
0%
10%
21%
31%
42%
52%
% of question respondents

Debugging intent

Debugging intent
What do you want to do when debugging your app?
0%
18%
36%
55%
73%
91%
1

View app logs

91.21%
1,547
2

Inspect layout and styles

77.54%
1,315
3

Inspect network requests

77.36%
1,312
4

Inspect code behaviour

67.92%
1,152
5

Understand React behaviour

65.8%
1,116
6

Profile your app

58.67%
995
7

Understand the behaviour of third party JS libraries

44.87%
761
8

Deep links

0.06%
9

Platforms inconsistencies

0.06%
10

Other Answers

0.47%
8
0%
18%
36%
55%
73%
91%
% of question respondents

Debugging and profiling pain points

Debugging and profiling pain points
Freeform
What pain points have you encountered with debugging and profiling your React Native projects? If applicable, point out the specific solution and its problems.
0%
12%
23%
35%
47%
58%
1

Network

2

Reliability

3

Debugging in general

4

Performance

5

Excessive complexity

6

Separate window

7

Version changes

8

Breakpoints

9

Fliper

10

Configuration

0%
12%
23%
35%
47%
58%
% of question respondents

Radon IDE is a new VSCode and Cursor extension that simplifies debugging and streamlines React Native development. It turns your editor into a fully-fledged IDE, eliminating context switching and automatically pausing runtime errors. Radon IDE allows you to add breakpoints in VSCode to easily debug your React Native app. Its click-to-inspect feature makes it possible to quickly jump directly from preview to a file where your component is defined, while the integrated log panel helps to pinpoint issues effortlessly by showing logs directly in the VSCode console. Try Radon IDE for free here.