自从我将nodejs版本从6.10更新到8.10以来,VScode调试器中出现错误



由于我将node-lambda项目从6.10节点版本升级到8.10,因此调试失败。

我的配置是:

{
// informations: https://go.microsoft.com/fwlink/?linkid=830387
// usefull environnement variables list at https://code.visualstudio.com/docs/editor/variables-reference
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug Node Lambda ",
"program": "/usr/local/bin/node-lambda",
"args": [
"run"
],
"preLaunchTask": "debug",
"postDebugTask": "clean",
"runtimeVersion": "8.10.0",
// "protocol": "inspector"
},
}

这是我的输出错误消息:

/home/gwendal/.nvm/versions/node/v8.10.0/bin/node --inspect-brk=24258 ../../../../usr/local/bin/node-lambda run 
Debugger listening on ws://127.0.0.1:24258/d27c6111-ae5e-482a-a27a-e88829fd409f
Debugger attached.
Runtime [nodejs8.10] is not supported.
main.js:53

我找不到让它工作的方法...

问题是我没有将我的 node-lambda 更新为 sudo 并使用 -g,因此 11.7 版本(节点 8.10 需要(不起作用。现在一切都很好。

相关内容

  • 没有找到相关文章

最新更新