0
我在IDEA上設置node-webkit,並發現調試問題 - 斷點不起作用。IntelliJ IDEA Node-Webkit調試不起作用
這裏是我的代碼:
的index.html
<!DOCTYPE html>
<html>
<body onload="process.mainModule.exports.callback0()">
<script>
var sup = require('./sup.js')
document.write(sup.hi())
</script>
</body>
</html>
的package.json
{
"main": "index.html",
"name": "Test",
"version": "0.0.0",
"node-main": "node-main.js"
}
sup.js
module.exports = {
hi: function() {
return 'hi'; //breakpoint here don't work
}
}
節點main.js
var i = 0;
exports.callback0 = function() {
console.log(i + ": " + window.location); //breakpoint here don't work
}
控制檯輸出
0: file:///C:/%5CWork%5Cwebkit%5Cwebkitbase/index.html
HTML輸出
喜
這意味着在IDEA調試中執行和問題的所有腳本。可能是什麼原因?