调试React本机项目

时间:2018-12-08 14:04:15

标签: react-native react-native-android react-native-ios

任何人都可以向我推荐最好的插件,这些插件可用于 Visual Studio代码进行调试,以响应本机应用程序而不是chrome。预先感谢

3 个答案:

答案 0 :(得分:0)

您可以尝试使用React Native Tools扩展(由Microsoft提供)以在Visual Studio Code中启用React Native应用调试。

我已经在another answer中写了详细的步骤。

答案 1 :(得分:0)

我认为最适合使用 nodemon 。您可以根据需要进行设置

launch.json 部分

    {
      "type": "node",
      "request": "attach",
      "name": "Node: Nodemon picker",
      "processId": "${command:PickProcess}",
      "restart": true,
      "protocol": "inspector",
  },

我认为chrome在您的情况下不是调试的好环境,因为它在转换时会生成额外的代码

答案 2 :(得分:0)

adb logcat *:S ReactNative:V ReactNativeJS:V

此命令可能会有所帮助。