前置条件
- 首先执行如下命令将项目克隆到本地
git clone https://github.com/jessun1990/VSCode-debug-nodejs
-
VSCode 安装扩展
debugger-for-chrome
-
安装依赖
# 进入项目目录
yarn install
# or
npm insatll
VSCode 调试方案
方案一:启动一个独立的无插件的 chrome 以调试 client
-
在终端中运行
yarn run client
ornpm run client
,保证 web server 运行,能够访问http://127.0.0.1:8091/(whatever)
下内容。 -
VSCode 编辑器进入 Debug 的界面,调试配置选择
启动一个独立的 Chrome 以调试 client
这个选项。
如果是第一次运行调试,且项目目录下
.vscode/launch.json
文件没有相应配置,debugger-for-chrome
插件会自动生成相应的 JSON 配置选项。
- 能够正确 debug 后(可以打duan dai n),会有一个无插件模式的 chrome 来启动,并且访问
http://localhost:8091/client/index.html
和相应的 Js 文件。
8091 端口必须在 web sever 中开启访问,同时在
launch.json
文件的设置选项中设置:"file": "${workspaceFolder}/client/index.html"
。
此时是没有 web server 服务的。
.vscode/launch.json
中的内容
{
"type": "chrome",
"request": "launch",
"name": "启动一个独立的 Chrome 以调试 client",
// "url": "http://localhost:8091/client/index.html",
"webRoot": "${workspaceRoot}",
"file": "${workspaceFolder}/client/index.html",
"sourceMaps": true
}
方案二:监听一个已经启动调试模式的 Chrome 以调试 client (推荐)
- 在终端中运行:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222
# 或者
/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary --remote-debugging-port=9222
确保 Google Chrome / Google Chrome Canary 事先没有启动,如果已经启动,可能无效。
- 在终端中运行:
yarn run client
此时应该可以使用上述的浏览器访问 http://127.0.0.1:8091/
-
VSCode 编辑器进入 Debug 的界面,调试配置选择
监听一个已经启动调试模式的 Chrome
这个选项。 -
能够正确 debug 后(可以打断点),会出现一个选择框来选择 tab 来调试,选择地址为
http://127.0.0.1:8091/client/index.html
-
浏览器中在
http://127.0.0.1:8091/client/index.html
地址下刷新。在 VSCode 编辑器中进行编辑和调试 JS 文件。
.vscode/launch.json
中的内容
{
"type": "chrome",
"request": "attach",
"name": "监听一个已经启动调试模式的 Chrome",
"port": 9222,
"sourceMaps": true,
"webRoot": "${workspaceRoot}",
}
方案三:启动调试 Node 服务器以调试 server
-
VSCode 编辑器打开
./server/app.js
文件。进入调试界面,选择启动调试 Node 服务器
。 -
可以设置断点。
.vscode/launch.json
中的内容
{
"type": "node",
"request": "launch",
"name": "启动 Node 服务器",
"program": "${workspaceRoot}/server/app.js"
}
方案四:Nodemon 启动服务器(inspect 模式)以调试 server
- 终端中运行:
yarn run server:inspect
-
访问
http://localhost:8092
。 -
VSCode 进入调试模式,选择
附加于已启动的 Node 服务器(insepect 模式)
。终端中显示Debugger attached
信息。 -
在 VSCode 编辑中加断点(或者在 Chrome 浏览器的 DevTools 中加断点),刷新网页进行断点调试。
网友评论