我可以让 VSCode 使用 NPM 运行脚本启动我的应用程序,然后附加到生成的进程进行调试吗?
我的项目通过 NPM 脚本使用 nodemon 启动(以执行 babel 等)。但是,当应用程序启动时,VSCode 的调试器不会附加(跳过断点)。
//来自 package.json
"scripts": { "debug": "nodemon --inspect --exec babel-node src/app.js" }
//来自launch.json
{
"type": "node",
"request": "launch",
"name": "Debug",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"debug"
],
"address": "localhost",
"port": 9229,
"protocol": "auto",
"restart": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"autoAttachChildProcesses": true
}
调试器似乎已启动,但我在几个测试调用旁边放置的断点被忽略。这是终端输出:
[nodemon] 1.19.1
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `babel-node --inspect src/app.js`
Debugger listening on ws://127.0.0.1:9229/13ef6ca8-40da-4741-854a-467e4230b2a7
For help, see: https://nodejs.org/en/docs/inspector
Debugger attached.
Hey!
Waiting for the debugger to disconnect...
[nodemon] clean exit - waiting for changes before restart```
看起来这是一个愚蠢的差事,因为从技术上讲这是不可能完成的。
我是一名优秀的程序员,十分优秀!