我正在尝试使用节点调试器。
我正在运行node debug server
来运行我的服务器。然后我有:
...
var Workspace = mongoose.model('Workspace');
debugger;
此时,正如预期的那样,当我运行此代码时,弹出调试器。 但是,我希望它能够设置所有当前变量,就像在Chrome自己的调试器中一样。
可是:
break in hotplate/node_modules/bd/lib/bd.js:133
132
133 debugger;
134
135 // Delete the ID and the version since there's no point,
debug> Workspace
ReferenceError: Workspace is not defined
那么......我如何实际检查当前变量?
Bonus问题:有没有办法使用Chrome的开发人员工具(CTRL-J),以便它连接到节点并以这种方式工作? (我知道node-inspector,但它已经过时了......)
答案 0 :(得分:77)
使用repl
命令(参见docs中的第三个示例)
break in hotplate/node_modules/bd/lib/bd.js:133
132
133 debugger;
134
135 // Delete the ID and the version since there's no point,
debug> repl
Press Ctrl + C to leave debug repl
> Workspace
答案 1 :(得分:3)