/ usr / local / bin / node:错误选项: - expand-debug-as = v8debug

时间:2018-02-15 00:20:25

标签: debugging webstorm

在WebStorm中,我有test01.js

function test() {
  console.log('test')
}

test()

当我运行test01.js时,我在控制台中出现了以下错误:

  

/ usr / local / bin / node --debug-brk = 56907 --expose-debug-as = v8debug /Users/Desktop/vue/vuejs-test01/src/test/test01.js
  / usr / local / bin / node:错误选项: - expand-debug-as = v8debug

使用退出代码9完成流程

enter image description here

2 个答案:

答案 0 :(得分:1)

请确保将WebStorm升级到最新版本 - 完全支持Node.js 8+调试仅适用于2017.2。*。 如果无法升级WebStorm,请将Node.js降级到v.6

答案 1 :(得分:0)

在节点参数中添加--inspect值。

Run -> Edit Configurations -> Configuration -> Node Parameters

然后你应用它并重新运行它将起作用的test01.js文件。