首页 > 编程语言> > DeprecationWarning: `node --debug` and `node --debug-brk` are invalid. Please use `node --inspect` 等
DeprecationWarning: `node --debug` and `node --debug-brk` are invalid. Please use `node --inspect` 等
作者:互联网
vscode断点,开启调试控制台报错:
(node:11104) [DEP0062] DeprecationWarning: `node --debug` and `node --debug-brk` are invalid. Please use `node --inspect` or `node --inspect-brk` instead.
这是因为`node --debug` and `node --debug-brk`已经被废弃了。我们可以安装 node-inspector 进行调试
步骤:
1.安装
npm install -g node-inspector
2.终端运行 node --inspect-brk index.js 即可进行在谷歌浏览器中调试
标签:node,use,inspect,Please,brk,debug,调试 来源: https://blog.csdn.net/xiasohuai/article/details/90551677