V8自带了一个强大的调试器,可以从外部通过TCP协议访问。io.js
为这个调试器内建了一个客户端。要使用它的话,使用debug
参数启动io.js
;会出现提示符:
% iojs 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>
io.js
的调试器客户端并未支持所有的命令,但是简单的步进和调试都是可以的。通过在源代码就放置debugger;
语句,你可以启用一个断点。
例如,假设又一个这样的myscript.js
:
// myscript.js
x = 5;
setTimeout(function () {
debugger;
console.log("world");
}, 1000);
console.log("hello");
那么一旦你打开调试器,它会在第四行中断。
% iojs 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")
。
Stepping
Breakpoints
script.js
的第一行设置断点script.js
第一行的断点同样也可以在一个还未载入的文件(模块)中设置断点:
% ./iojs 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
repl
Execution control
Various
V8调试器可以通过 使用--debug
命令行参数打开io.js
或 向一个已存在的io.js
进程发送SIGUSR1
信号 来启用。
一旦一个进程被设置为了调试模式,它就可以被连接到io.js
调试器。可以通过pid或URI来连接,语法为:
localhost:5858
)连接进程