Node.js调试工具是一种用于调试Node.js应用程序的工具,它可以帮助开发人员更好地理解和排除代码中的问题。Node.js调试工具可以帮助开发人员更快地定位和修复问题,并且可以更好地了解代码的执行过程。
Node.js调试工具有很多,包括Node Inspector、Chrome DevTools、Visual Studio Code Debugger、WebStorm Debugger、Sublime Text Debugger和Atom Debugger等。这些工具都有一些不同的特性,但它们都能够帮助开发人员更好地理解和排除代码中的问题。
// 使用 Node Inspector 进行 Node.js 调试 const inspector = require('inspector'); const session = new inspector.Session(); session.connect(); session.post('Debugger.enable', () => { // 在此处打断点 });
稳定性: 3 - 稳定
V8提供了强大的调试工具,可以通过TCP protocol从外部访问。Node内置这个调试工具客户端。使用这个调试器的方法是,以debug
参数启动Node.js,将会出现提示,指示调试器成功启动:
% node debug myscript.js
< debugger listening on port 5858
connecting... ok
break in /home/indutny/Code/git/indutny/myscript.js:1
1 x = 5;
2 setTimeout(function () {
3 debugger;
debug>
Node的调试器不支持所有的命令,但是简单的步进和检查还是可以的。在代码里嵌入debugger;
,可以设置断点。
例:myscript.js
代码如下:
// myscript.js
x = 5;
setTimeout(function () {
debugger;
console.log("world");
}, 1000);
console.log("hello");
如果启动debugger,它会断在第四行:
% node debug myscript.js
< debugger listening on port 5858
connecting... ok
break in /home/indutny/Code/git/indutny/myscript.js:1
1 x = 5;
2 setTimeout(function () {
3 debugger;
debug> cont
< hello
break in /home/indutny/Code/git/indutny/myscript.js:3
1 x = 5;
2 setTimeout(function () {
3 debugger;
4 console.log("world");
5 }, 1000);
debug> next
break in /home/indutny/Code/git/indutny/myscript.js:4
2 setTimeout(function () {
3 debugger;
4 console.log("world");
5 }, 1000);
6 console.log("hello");
debug> repl
Press Ctrl + C to leave debug repl
> x
5
> 2+2
4
debug> next
< world
break in /home/indutny/Code/git/indutny/myscript.js:5
3 debugger;
4 console.log("world");
5 }, 1000);
6 console.log("hello");
7
debug> quit
%
repl
命令能执行远程代码;next
能步进到下一行。此外可以输入help
查看哪些命令可用。
调试的时候可以查看表达式和变量。每个断点处,监视器都会显示上下文。
输入watch("my_expression")
开始监视表达式,watchers
显示活跃的监视器。输入unwatch("my_expression")
可以移除监视器。
cont
, c
- 继续执行next
, n
- Step nextstep
, s
- Step inout
, o
- Step outpause
- 暂停 (类似开发工具的暂停按钮)setBreakpoint()
, sb()
- 当前行设置断点setBreakpoint(line)
, sb(line)
- 在指定行设置断点setBreakpoint("fn()")
, sb(...)
- 在函数里的第一行设置断点setBreakpoint("script.js", 1)
, sb(...)
- 在 script.js 第一行设置断点。clearBreakpoint
, cb(...)
- 清除断点也可以在尚未加载的文件里设置断点:
% ./node debug test/fixtures/break-in-module/main.js
< debugger listening on port 5858
connecting to port 5858... ok
break in test/fixtures/break-in-module/main.js:1
1 var mod = require("./mod.js");
2 mod.hello();
3 mod.hello();
debug> setBreakpoint("mod.js", 23)
Warning: script "mod.js" was not loaded yet.
1 var mod = require("./mod.js");
2 mod.hello();
3 mod.hello();
debug> c
break in test/fixtures/break-in-module/mod.js:23
21
22 exports.hello = function() {
23 return "hello from module";
24 };
25
debug>
backtrace
, bt
- 打印当前执行框架的backtracelist(5)
- 显示脚本代码的5行上下文(之前5行和之后5行)watch(expr)
- 监视列表里添加表达式unwatch(expr)
- 从监视列表里删除表达式watchers
- 显示所有的监视器和它们的值(每个断点都会自动列出) repl
- 在所调试的脚本的上下文中,打开调试器的repl run
- 运行脚本 (开始调试的时候自动运行)restart
- 重新运行脚本kill
- 杀死脚本scripts
- 列出所有已经加载的脚本version
- 显示v8版本V8调试器可以用两种方法启用和访问,--debug
命令启动调试,或向已经启动Node发送SIGUSR1
。
一旦一个进程进入调试模式,它可以被node调试器连接。调试器可以通过pid
或URI来连接。
node debug -p <pid>
- 通过pid
连接进程node debug <URI>
- 通过URI(比如localhost:5858)连接进程w。介绍TypeScript中有些独特的概念可以在类型层面上描述JavaScript对象的模型。 这其中尤其独特的一个例子是“声明合并”的概念。 ...
本文提供了两个实例,其中,示例一讲解JS根据key值获取URL中的参数值及把URL的参数转换成json对象;示例二讲解js获取url传递参数...
Submit form 属性 Submit 对象定义和用法form 属性可返回对包含该确认按钮的表单的引用。若成功,该属性返回一个表单对象。语法s...
Script src 属性 Script 对象实例获取外部脚本的 URL:var x = document.getElementById("myScript").srcx 输出结果为://www..c...
HTML DOM 方法 HTMLDOM方法是我们可以在节点(HTML 元素)上执行的动作,学习HTMLDOM方法对您学习HTMLDOM是必不可少的,开始您的...
描述@if指令接受SassScript表达式,并且只要表达式的结果为false或null以外的任何结果,就使用嵌套样式。语法@if expression {//...
sass变量的声明和css属性的声明很像:$highlight-color: #F90;这意味着变量$highlight-color现在的值是#F90。任何可以用作css属性...