gpt4 book ai didi

javascript - 如何调试 nodejs readline 应用程序?

转载 作者:搜寻专家 更新时间:2023-11-01 00:30:59 25 4
gpt4 key购买 nike

我想调试一个简单的 nodejs readline 程序。

var readline = require("readline");
var rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});

rl.question("What's your name \n",function(answer){
var x =10; // set the break point here
console.log("your name is ",answer);
rl.close();
});

我将断点设置在 var x = 10; rl.question() 的内部回调函数。但断点从未命中。

为什么会这样,我很困惑。
那么如何调试一个readline程序。

最佳答案

您是否尝试过使用 Node 检查器?我能够从那里调试得很好。如果您的程序是基于终端的,则使用基于 Web 的调试器,从而让终端可用于应用程序可能会避免一些困惑和棘手。

screen grab of node-inspector

关于javascript - 如何调试 nodejs readline 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34279642/

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