相关文章:Visual Studio Code 前端调试不完全指南
npm install
# or
yarn
- vscode 安装
debugger-for-chrome
npm run frontend
- 启动调试配置:“启动一个独立的 Chrome 以调试 frontend”
- 在
frontend/index.js
中加断点 - 访问
http://localhost:8091/frontend/
npm run backend:debug
- 启动调试配置:“附加于已启动的 Node 服务器(debug模式)”
- 在
server/app.js
中加断点 - 访问
http://localhost:8092/
npm run backend:inspect
- 启动调试配置:“附加于已启动的 Node 服务器(inspect模式)”
- 在
server/app.js
中加断点 - 访问
http://localhost:8092/