0

Can any one suggest me best plugins that available for Visual Studio Code for debugging react native app instead of chrome . Thanks in advance

asked Dec 8, 2018 at 14:04
1
  • 1
    React Native Tools is by far the best plugin I have been using. Commented Dec 8, 2018 at 14:29

3 Answers 3

1

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.

answered May 21, 2019 at 9:39
Sign up to request clarification or add additional context in comments.

Comments

1

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

answered May 21, 2019 at 10:34

Comments

1
adb logcat *:S ReactNative:V ReactNativeJS:V

This command could be helpful.

answered Jul 8, 2019 at 21:25

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.