Can any one suggest me best plugins that available for Visual Studio Code for debugging react native app instead of chrome . Thanks in advance
-
1React Native Tools is by far the best plugin I have been using.Suraj Malviya– Suraj Malviya2018年12月08日 14:29:07 +00:00Commented Dec 8, 2018 at 14:29
3 Answers 3
You can try React Native Tools extension (provided by Microsoft) to enable React Native app debugging in Visual Studio Code.
I have written steps to do so in detail in my another answer.
Comments
You can use nodemon, i think best suited. You can set according your needs
the launch.json part
{ "type": "node", "request": "attach", "name": "Node: Nodemon picker", "processId": "${command:PickProcess}", "restart": true, "protocol": "inspector", },
i think chrome is not good environment for debugging in your case because it has generating extra codes while transforming
Comments
adb logcat *:S ReactNative:V ReactNativeJS:V
This command could be helpful.