当我在控制台中输入npm run debug
时,我得到:"Debugger listening on ws://127.0.0.1:3090/d17dfe56-4fa4-4686-a62e-d07cff78c834"
。当我使用chrome访问此地址时,我看到的唯一内容是"WebSockets request was expected"
。我应该调整配置的哪些部分以使调试器工作?我使用的是最新版本的nodejs。
package.json脚本
"scripts": {
"prod": "webpack -p --env.production --progress",
"start": "babel-node --presets es2015 server/server.js",
"watch": "nodemon --exec npm run start",
"debug": "babel-node --presets es2015 server/server.js --inspect --debug-brk=3090"
}
launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch via NPM",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"program": "${workspaceRoot}/server/server.js",
"restart": true,
"runtimeArgs": [
"run-script", "debug"
],
"port": 3090
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:3090",
"webRoot": "${workspaceRoot}"
},
{
"type": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 3090,
"webRoot": "${workspaceRoot}"
}
]
}
文件结构:
├───.vscode
├───js
├───server
│ ├───db
│ ├───middleware
│ ├───models
│ ├───server.js
答案 0 :(得分:6)
这似乎是nodejs库版本> = 7.0.0的问题。
第一种解决方法:
使用开发工具在Chrome中打开此文件的一个小解决方法是在您的案例中复制ws
之后的链接代码:
Debugger listening on ws://127.0.0.1:3090/d17dfe56-4fa4-4686-a62e-d07cff78c834
并将其附加到与ws=
相关的开发工具链接的末尾,如下所示:
chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws=127.0.0.1:3090/d17dfe56-4fa4-4686-a62e-d07cff78c834
这将使您能够在chrome dev工具中打开您的程序。问题的链接和解决方案是here
第二种解决方法:
我尝试安装旧版本的节点,即6.11.2和npm 3.10并尝试使用Visual Studio代码,它运行良好,没有任何问题。
然而,通过上面第一种方法显示的技巧,我仍然能够使用节点和npm的最新版本。
编辑:格式化我的答案以便更好地理解