Flipper + React Native - can I debug JavaScript?

Viewed 1293

I feel stupid that I'm asking that but - Is it possible to debug JavaScript (setting breakpoints, see variables values) with Flipper in a React Native environment?

2 Answers

All other answers are wrong, today it's not possible to debug JavaScript with Flipper, unless you use Hermes.

enter image description here

So, without Hermes is not possible to add breakpoint, show variable values or debug line by line.

Yes, you can do that with Flipper. Just download that Flipper at their official website. https://fbflipper.com/. It is easy to use. just run your react native code, without enable debug in your emulator, and then, after that just Open Flipper app. Re-reload your emulator, and you can start debugging like console.log, redux debugger, network inspect, and so on. For more details, visit their official site: https://fbflipper.com/docs/getting-started/index

react native flipper debugger

Related