DeprecationWarning: `node --debug` and `node --debug-brk` are invalid. Please use `node --inspect` 等

    xiaoxiao2023-11-16  141

    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  即可进行在谷歌浏览器中调试

     

    最新回复(0)