是否可以调试NODE REPL。 node cmd带来repl提示符>。在提示符内可以启动调试器。比如说
> hello = function(){
....debugger;
....console.log('hello');
}
>hello() --> should run in the debugger..
答案 0 :(得分:1)
是即可。使用node --debug
启动repl。然后,您可以从单独的终端使用node-inspector
(npm包),并通过在chrome中打开http://localhost:8080/debug?port=5858
,使用chrome开发人员工具在浏览器中进行调试。例如,您可以在repl.js
函数的complete
文件中设置断点,如果您转到节点repl并点击TAB
,它将触发断点,您可以调试它。
如果你想要咖啡脚本代表,那就是coffee --nodejs --debug
。