DeprecattionWarning:'节点--debug'和节点--debug-brk'无效。请使用节点--inspect或'节点--inspect-brk' insted的

时间:2018-02-15 07:27:27

标签: node.js visual-studio

当我在visual studio中运行node.js应用程序时,我得到了这个:DeprecationWarning: 'node --debug' and 'node --debug-brk' are invalid.

请使用' node --inspect或' node --inspect-brk'代替。 in command promt。

1 个答案:

答案 0 :(得分:0)

node --debug和node --debug-brk都用于在7.7.0之前的节点版本中进行调试

  

自Node 7.7.0起,旧版调试器已被弃用。请改为使用 - > inspect和Inspector。

vscode使用“--inspect --debug-brk”组合在所有节点版本中进入调试模式

See the response from member of vscode team