一些有用的笔记
- 如何调试node 程序
{
"type": "node",
"request": "launch",
"name": "Backen",
"runtimeExecutable": "nodemon",
"args": [
"${workspaceFolder}/bin/www"
],
"restart": true,
"protocol": "inspector",
"sourceMaps": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"runtimeArgs": [
"--ignore",
"www",
]
}