WebStorm 调试断点不适用于 Node.js 项目
WebStorm debug breakpoints not working for Node.js project
我正在尝试在 React Native 前端应用程序 Node 项目中设置调试断点。
我正在使用 WebStorm v2020.3 和 Node v15.14.0
我对项目的Node.js运行配置的设置:
我在整个项目中设置了断点,其中 none 个断点被触发。
调试“附加到节点。js/Chrome”运行 配置的设置:
首先,我 运行 项目并得到这个输出:
/usr/local/bin/node --inspect-brk /Users/lachlangrant/Git/RN-BILLI-APP/node_modules/react-native/cli.js start
Debugger listening on ws://127.0.0.1:9229/051a5d86-ad54-4a6c-bbaa-366bbe8a938e
For help, see: https://nodejs.org/en/docs/inspector
接下来,我 运行 调试器并得到这个输出:
Debugger attached.
###### ######
### #### #### ###
## ### ### ##
## #### ##
## #### ##
## ## ## ##
## ### ### ##
## ######################## ##
###### ### ### ######
### ## ## ## ## ###
### ## ### #### ### ## ###
## #### ######## #### ##
## ### ########## ### ##
## #### ######## #### ##
### ## ### #### ### ## ###
### ## ## ## ## ###
###### ### ### ######
## ######################## ##
## ### ### ##
## ## ## ##
## #### ##
## #### ##
## ### ### ##
### #### #### ###
###### ######
(node:33264) Warning: Accessing non-existent property 'splice' of module exports inside circular dependency
(Use `node --trace-warnings ...` to show where the warning was created)
Welcome to React Native!
Learn once, write anywhere
To reload the app press "r"
To open developer menu press "d"
然后我在Xcode中使用模拟器触发断点,没有任何反应。
我查看了各种主题,包括 this one。
有什么想法吗?提前致谢。
您要调试什么 - react-native/cli.js
脚本或您的 React Native 应用程序?在后一种情况下,请使用 React Native run configuration. See https://www.jetbrains.com/help/webstorm/2021.1/react-native.html#ws_react_native_debug
我正在尝试在 React Native 前端应用程序 Node 项目中设置调试断点。
我正在使用 WebStorm v2020.3 和 Node v15.14.0
我对项目的Node.js运行配置的设置:
我在整个项目中设置了断点,其中 none 个断点被触发。
调试“附加到节点。js/Chrome”运行 配置的设置:
首先,我 运行 项目并得到这个输出:
/usr/local/bin/node --inspect-brk /Users/lachlangrant/Git/RN-BILLI-APP/node_modules/react-native/cli.js start
Debugger listening on ws://127.0.0.1:9229/051a5d86-ad54-4a6c-bbaa-366bbe8a938e
For help, see: https://nodejs.org/en/docs/inspector
接下来,我 运行 调试器并得到这个输出:
Debugger attached.
###### ######
### #### #### ###
## ### ### ##
## #### ##
## #### ##
## ## ## ##
## ### ### ##
## ######################## ##
###### ### ### ######
### ## ## ## ## ###
### ## ### #### ### ## ###
## #### ######## #### ##
## ### ########## ### ##
## #### ######## #### ##
### ## ### #### ### ## ###
### ## ## ## ## ###
###### ### ### ######
## ######################## ##
## ### ### ##
## ## ## ##
## #### ##
## #### ##
## ### ### ##
### #### #### ###
###### ######
(node:33264) Warning: Accessing non-existent property 'splice' of module exports inside circular dependency
(Use `node --trace-warnings ...` to show where the warning was created)
Welcome to React Native!
Learn once, write anywhere
To reload the app press "r"
To open developer menu press "d"
然后我在Xcode中使用模拟器触发断点,没有任何反应。
我查看了各种主题,包括 this one。
有什么想法吗?提前致谢。
您要调试什么 - react-native/cli.js
脚本或您的 React Native 应用程序?在后一种情况下,请使用 React Native run configuration. See https://www.jetbrains.com/help/webstorm/2021.1/react-native.html#ws_react_native_debug