javascript – Nodemon inspect / debug无法正常工作?

运行nodemon –inspect index.js或nodemon –debug index.js不起作用.

节点版本:8.9.1

Nodemon版本:1.12.6

我试过这些没有运气:

> nodemon –inspect-brk index.js
> nodemon – –inspect index.js
> nodemon index.js – –inspect index.js
> nodemon index.js –debug index.js
> nodemon – –debug index.js
> nodemon –inspect –debug index.js
> nodemon –debug-brk index.js

但是node –inspect index.js或node –inspect-brk index.js有效.我好奇怎么样?如果任何替代方案或某种形式的解决方案也会很棒.

Please comment if you need further description.

解决方法:

解决了,

似乎nodemon@1.12.6没有传递这个参数.有一个更新的版本可用1.12.7,其中一切正常和良好.

答案来源:Nodemon Issues – Github

上一篇:Node.js实现热更新


下一篇:javascript – Nodemon没有在React-Express-Node App中刷新浏览器