是否可以调试节点repl

时间:2014-07-10 01:29:35

标签: javascript node.js javascript-debugger node-repl

是否可以调试NODE REPL。 node cmd带来repl提示符>。在提示符内可以启动调试器。比如说

> hello = function(){
....debugger;
....console.log('hello');
}
>hello() --> should run in the debugger..

1 个答案:

答案 0 :(得分:1)

即可。使用node --debug启动repl。然后,您可以从单独的终端使用node-inspector(npm包),并通过在chrome中打开http://localhost:8080/debug?port=5858,使用chrome开发人员工具在浏览器中进行调试。例如,您可以在repl.js函数的complete文件中设置断点,如果您转到节点repl并点击TAB,它将触发断点,您可以调试它。

如果你想要咖啡脚本代表,那就是coffee --nodejs --debug