1

我可以使用 node-inspector 来调试我的 nodemon 应用程序。但我也想调试我的测试。所以我了解到我也需要在调试模式下启动 mocha(mocha --debug)问题是,这将尝试在默认情况下在端口 5858 上进行调试,在我的情况下 nodemon 正在使用。所以我需要更改任何一个的调试端口,我该怎么做?

4

2 回答 2

6

好的,我可以用它mocha --debug=8101来更改 mocha 的调试端口。

于 2015-01-26T04:09:26.490 回答
2

The same command line parameter works for nodemon and node. To bind on a different address, you can specify the IP like --debug=127.0.0.1:5858 (which is the default since Node.js v7), or use a wildcard --debug=[::]:5858 (which was the default in Node.js v6 and lower).

于 2017-01-13T12:27:29.273 回答