Luk*_*gen 5 node.js foreman visual-studio-code
目前,我正在通过输入foreman start命令行来运行我的解决方案,并且运行良好。我正在尝试使用 Visual Studio 代码调试我的代码。为此,我创建了一个 launch.json 文件:
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/package.json",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": "start",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
}
]
}
Run Code Online (Sandbox Code Playgroud)
我创建了一个 tasks.json 文件来尝试从那一点启动程序:
{
"version": "0.1.0",
"command": "start",
"isShellCommand": true,
"args": [
"--no-color"
],
"tasks": [
{
"taskName": "test",
"args": [],
"isTestCommand": true
},
{
"suppressTaskName": true,
"taskName": "start",
"args": [
"foreman",
"start"
],
"isBuildCommand": true
}
]
}
Run Code Online (Sandbox Code Playgroud)
当我foreman start正常运行时,我看到这个输出:
$ foreman start
12:00:59 web.1 | started with pid 22641
12:00:59 workers.1 | started with pid 22642
12:00:59 intermediary.1 | started with pid 22643
12:01:00 web.1 | [INFO] Node app is running at localhost: 3777
Run Code Online (Sandbox Code Playgroud)
如果我在当前状态下调试,控制台的输出是:
Failed to launch external program start --no-color.
spawn start ENOENT
Run Code Online (Sandbox Code Playgroud)
如果我将程序更改为指向 gulp:
"program": "${workspaceRoot}/node_modules/.bin/gulp",
Run Code Online (Sandbox Code Playgroud)
它给了我一些更有希望的东西,但因为它不是工头,它不能运行我需要的一切。
node --debug-brk=16751 --nolazy node_modules/.bin/gulp
Debugger listening on port 16751
[16:23:17] Using gulpfile ~/Git/backend/gulpfile.js
[16:23:17] Starting 'watch'...
[16:23:18] Finished 'watch' after 125 ms
[16:23:18] Starting 'default'...
[16:23:18] Finished 'default' after 13 ?s
Run Code Online (Sandbox Code Playgroud)
有谁知道如何foreman start从 Visual Studio 代码调试?
foreman start这将作为 shell 命令运行。按F1,键入Run Task,Enter然后选择development任务。
{
"version": "0.1.0",
"command": "foreman",
"isShellCommand": true,
"tasks": [
{
"suppressTaskName": true,
"taskName": "development",
"args": [
"start"
],
"isWatching": true
}
]
}
Run Code Online (Sandbox Code Playgroud)
如果你想调试一个 Web 应用程序,你应该看看vscode-chrome-debug如果它是一个节点应用程序,你必须将你的应用程序的入口点设置为 launch.json 中的程序"program": "${workspaceRoot}/app.js"
| 归档时间: |
|
| 查看次数: |
1570 次 |
| 最近记录: |