我正在尝试使用节点调试器。我正在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
那么......我如何实际检查当前变量?
额外的问题:是否有任何方法可以使用 Chrome 的开发人员工具 (CTRL-J),以便它连接到节点并以这种方式工作?(我知道节点检查器,但它非常过时并且......)