gpt4 book ai didi

node.js - 如何在 Node.js 应用程序中启用调试

转载 作者:搜寻专家 更新时间:2023-10-31 23:42:30 25 4
gpt4 key购买 nike

目前我的模块中有很多 console.log。其中许多是调试消息,如果我正在调试我的应用程序,我只需要查看这些消息。

我想在启动我的应用程序时使用参数启用调试,例如 node myApp.js -d。此外,如果调试处于事件状态,我的模块应该只调用 console.log

在 Node 中实现这一目标的最佳实践是什么?

最佳答案

查找 npm debug .我相信这就是您要找的。

安装调试:

 npm install debug --save

示例代码:

var debug = require('debug')('your module');
debug('msg', 'more details');

要开始调试所有应用程序,请运行以下命令:

DEBUG=* node myApp.js

仅调试应用中的几个模块:

DEBUG=first,second node myApp.js

对于没有调试的正常运行你的应用程序

node myApp.js

关于node.js - 如何在 Node.js 应用程序中启用调试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29332664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com