NodeJs 专题
专题目录
您的位置:Js应用 > NodeJs专题 > Node.js 调试器
Node.js 调试器
作者:--    发布时间:2019-11-20
稳定性: 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查看哪些命令可用。

监视器-watchers

调试的时候可以查看表达式和变量。每个断点处,监视器都会显示上下文。

输入watch("my_expression")开始监视表达式,watchers显示活跃的监视器。输入unwatch("my_expression")可以移除监视器。

命令参考-commands reference

步进-stepping

  • cont, c- 继续执行
  • next, n- step next
  • step, s- step in
  • out, o- step out
  • pause- 暂停 (类似开发工具的暂停按钮)

断点breakpoints

  • 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>

信息info

  • backtrace, bt- 打印当前执行框架的backtrace
  • list(5)- 显示脚本代码的5行上下文(之前5行和之后5行)
  • watch(expr)- 监视列表里添加表达式
  • unwatch(expr)- 从监视列表里删除表达式
  • watchers- 显示所有的监视器和它们的值(每个断点都会自动列出)
  • repl- 在所调试的脚本的上下文中,打开调试器的repl

执行控制execution control

  • run- 运行脚本 (开始调试的时候自动运行)
  • restart- 重新运行脚本
  • kill- 杀死脚本

杂项various

  • scripts- 列出所有已经加载的脚本
  • version- 显示v8版本

高级应用advanced usage

v8调试器可以用两种方法启用和访问,--debug命令启动调试,或向已经启动node发送sigusr1

一旦一个进程进入调试模式,它可以被node调试器连接。调试器可以通过pid或uri来连接。

  • node debug -p <pid>- 通过pid连接进程
  • node debug <uri>- 通过uri(比如localhost:5858)连接进程w。
网站声明:
本站部分内容来自网络,如您发现本站内容
侵害到您的利益,请联系本站管理员处理。
联系站长
373515719@qq.com
关于本站:
编程参考手册