我想調試一個簡單的nodejs readline程序。如何調試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程序。