我正在尝试在vs代码中获得一个简单的反应前端和nodejs后端运行和可调试。我正在使用compound启动配置来一起启动“客户端”和“服务器”。 nodejs后端是为我自动启动的,但我总是必须在控制台中为客户端做一个npm start
才能连接。我见过的所有教程都建议在vs代码中运行调试配置之前必须执行此步骤。 vs代码不可能像nodejs后端那样启动前端。
这是我的launch.json看起来像:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"compounds": [
{
"name": "Client+Server",
"configurations": [ "Server", "Client" ]
}
],
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Server",
"program": "${workspaceFolder}/server/server.js"
},
{
"type": "chrome",
"request": "launch",
"name": "Client",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/client/src/index.js"
}
]
}
客户需要npm start
的原因是因为你指的是http://localhost:3000
npm start实际上将运行一个迷你Web服务器来提供http://localhost:3000上的html文件
另一种方法是在你的src上使用类似http-server
的东西,这将具有相同的效果
我从一开始就启动调试会话时遇到了一些麻烦所以我决定启动nodejs
服务器然后附加调试器。
我发现这个配置对我有用。
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach Server",
"restart": true,
"port": 9000
}, {
"type": "chrome",
"request": "launch",
"name": "Launch Client",
"port": 9001,
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/dist",
"sourceMaps": true
}
],
"compounds": [
{
"name": "Attach Client+Server",
"configurations": ["Attach Server", "Launch Client"]
}
]
}
以下是我用于package.json
的一些脚本。
{
"scripts": {
"prestart": "rollup -c -w",
"start": "nodemon --ignore '*.ts' --inspect=9000 ./dist/server/index"
},
}
我不得不使用nodemon
来检测更改并重新启动节点服务器。
但是如果您的React应用程序需要与您的节点应用程序分开启动,那么我建议使用像http-server
这样的东西为您的React应用程序启动本地服务器。然后使用concurrently
同时启动两个应用程序。您的package.json
可能如下所示:
{
"scripts": {
"prestart": "rollup -c -w",
"start:client": "http-server ./dist/client/",
"start:server": "nodemon --ignore '*.ts' --inspect=9000 ./dist/server/index",
"serve": "concurrently \"npm:start:client\" \"npm:start:server\""
},
}
资源VS代码调试配置:https://code.visualstudio.com/Docs/editor/debugging