- 断言测试
- 异步上下文跟踪
- 异步钩子
- 缓冲(Buffer)
- C++ 插件
- 使用 Node-API 的 C/C++ 插件
- C++ 嵌入 Node环境
- 子进程(Child processes)
- 集群(Cluster)
- 命令行选项
- 控制台(Console)
- 核心包(Corepack)
- 加密(Crypto)
- 调试器(Debugger)
- 已弃用的 API
- 诊断通道(Diagnostics Channel)
- 域名系统(DNS)
- 域(Domain)
- 错误(Errors)
- 事件(Events)
- 文件系统(File system)
- 全局变量(Globals)
- HTTP
- HTTP/2
- HTTPS
- 检查器(Inspector)
- 国际化
- 模块:CommonJS 模块
- 模块:ECMAScript 模块
- 模块:
node:module
API - 模块:packages 模块
- 网络(Net)
- 系统(OS)
- 路径(Path)
- 性能挂钩(Performance hooks)
- 性能挂钩(Permissions)
- 进程(Process)
- Punycode 国际化域名编码
- 查询字符串(Query strings)
- 命令行库(Readline)
- REPL 交互式编程环境
- 诊断报告
- 单个可执行应用程序
- Stream 流
- 字符串解码器
- 单元测试
- 定时器(Timers)
- 传输层安全/SSL
- 跟踪事件
- TTY
- UDP/数据报
- URL
- 实用程序
- V8
- 虚拟机
- WebAssembly
- Web加密 API(Web Crypto API)
- 网络流 API(Web Streams API)
- 工作线程(Worker threads)
- zlib
Node.js v18.18.2 文档
- Node.js v18.18.2
- ► 目录
-
►
索引
- 断言测试
- 异步上下文跟踪
- 异步钩子
- 缓冲(Buffer)
- C++ 插件
- 使用 Node-API 的 C/C++ 插件
- C++ 嵌入 Node环境
- 子进程(Child processes)
- 集群(Cluster)
- 命令行选项
- 控制台(Console)
- 核心包(Corepack)
- 加密(Crypto)
- 调试器(Debugger)
- 已弃用的 API
- 诊断通道(Diagnostics Channel)
- 域名系统(DNS)
- 域(Domain)
- 错误(Errors)
- 事件(Events)
- 文件系统(File system)
- 全局变量(Globals)
- HTTP
- HTTP/2
- HTTPS
- 检查器(Inspector)
- 国际化
- 模块:CommonJS 模块
- 模块:ECMAScript 模块
- 模块:
node:module
API - 模块:packages 模块
- 网络(Net)
- 系统(OS)
- 路径(Path)
- 性能挂钩(Performance hooks)
- 性能挂钩(Permissions)
- 进程(Process)
- Punycode 国际化域名编码
- 查询字符串(Query strings)
- 命令行库(Readline)
- REPL 交互式编程环境
- 诊断报告
- 单个可执行应用程序
- Stream 流
- 字符串解码器
- 单元测试
- 定时器(Timers)
- 传输层安全/SSL
- 跟踪事件
- TTY
- UDP/数据报
- URL
- 实用程序
- V8
- 虚拟机
- WebAssembly
- Web加密 API(Web Crypto API)
- 网络流 API(Web Streams API)
- 工作线程(Worker threads)
- zlib
- ► 其他版本
- ► 选项
调试器#
Node.js 包含一个命令行调试实用程序。Node.js 调试器客户端不是功能齐全的调试器,但可以进行简单的单步执行和检查。
要使用它,请使用inspect
参数启动 Node.js,后跟要调试的脚本的路径。
$ node inspect myscript.js
< Debugger listening on ws://127.0.0.1:9229/621111f9-ffcb-4e82-b718-48a145fa5db8
< For help, see: https://nodejs.org/en/docs/inspector
<
connecting to 127.0.0.1:9229 ... ok
< Debugger attached.
<
ok
Break on start in myscript.js:2
1 // myscript.js
> 2 global.x = 5;
3 setTimeout(() => {
4 debugger;
debug>
调试器会自动在第一个可执行行处中断。要改为运行直到第一个断点(由debugger
语句指定),请将NODE_INSPECT_RESUME_ON_START
环境变量设置为1
。
$ cat myscript.js
// myscript.js
global.x = 5;
setTimeout(() => {
debugger;
console.log('world');
}, 1000);
console.log('hello');
$ NODE_INSPECT_RESUME_ON_START=1 node inspect myscript.js
< Debugger listening on ws://127.0.0.1:9229/f1ed133e-7876-495b-83ae-c32c6fc319c2
< For help, see: https://nodejs.org/en/docs/inspector
<
connecting to 127.0.0.1:9229 ... ok
< Debugger attached.
<
< hello
<
break in myscript.js:4
2 global.x = 5;
3 setTimeout(() => {
> 4 debugger;
5 console.log('world');
6 }, 1000);
debug> next
break in myscript.js:5
3 setTimeout(() => {
4 debugger;
> 5 console.log('world');
6 }, 1000);
7 console.log('hello');
debug> repl
Press Ctrl+C to leave debug repl
> x
5
> 2 + 2
4
debug> next
< world
<
break in myscript.js:6
4 debugger;
5 console.log('world');
> 6 }, 1000);
7 console.log('hello');
8
debug> .exit
$
repl
命令允许远程评估代码。next
命令进入下一行。输入help
查看其他可用命令。
按enter
而不输入命令将重复之前的调试器命令。
观察者#
可以在调试时观察表达式和变量值。在每个断点上,观察者列表中的每个表达式都将在当前上下文中进行计算,并立即显示在断点的源代码列表之前。
要开始观看表达式,请输入watch('my_expression')
。命令
watchers
将打印事件观察者。要删除观察者,请输入
unwatch('my_expression')
。
命令参考#
单步#
cont
,c
: 继续执行next
,n
:下一步step
、s
:介入out
、o
:走出去pause
:暂停正在运行的代码(如开发者工具中的暂停按钮)
断点#
setBreakpoint()
,sb()
: 在当前行设置断点setBreakpoint(line)
,sb(line)
: 在特定行设置断点setBreakpoint('fn()')
、sb(...)
:在函数体中的第一个语句上设置断点setBreakpoint('script.js', 1)
、sb(...)
:在script.js
的第一行设置断点setBreakpoint('script.js', 1, 'num < 4')
、sb(...)
:在script.js
的第一行设置条件断点,仅当num < 4
计算结果为true
时中断clearBreakpoint('script.js', 1)
、cb(...)
:清除 第 1 行script.js
中的断点
还可以在尚未加载的文件(模块)中设置断点:
$ node inspect main.js
< Debugger listening on ws://127.0.0.1:9229/48a5b28a-550c-471b-b5e1-d13dd7165df9
< For help, see: https://nodejs.org/en/docs/inspector
<
connecting to 127.0.0.1:9229 ... ok
< Debugger attached.
<
Break on start in main.js:1
> 1 const mod = require('./mod.js');
2 mod.hello();
3 mod.hello();
debug> setBreakpoint('mod.js', 22)
Warning: script 'mod.js' was not loaded yet.
debug> c
break in mod.js:22
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
21
>22 exports.hello = function() {
23 return 'hello from module';
24 };
debug>
还可以设置一个条件断点,仅在给定表达式的计算结果为true
时中断:
$ node inspect main.js
< Debugger listening on ws://127.0.0.1:9229/ce24daa8-3816-44d4-b8ab-8273c8a66d35
< For help, see: https://nodejs.org/en/docs/inspector
<
connecting to 127.0.0.1:9229 ... ok
< Debugger attached.
Break on start in main.js:7
5 }
6
> 7 addOne(10);
8 addOne(-1);
9
debug> setBreakpoint('main.js', 4, 'num < 0')
1 'use strict';
2
3 function addOne(num) {
> 4 return num + 1;
5 }
6
7 addOne(10);
8 addOne(-1);
9
debug> cont
break in main.js:4
2
3 function addOne(num) {
> 4 return num + 1;
5 }
6
debug> exec('num')
-1
debug>
信息#
backtrace
,bt
: 打印当前执行帧的回溯list(5)
:列出具有 5 行上下文的脚本源代码(前后各 5 行)watch(expr)
:将表达式添加到监视列表unwatch(expr)
:从监视列表中删除表达式unwatch(index)
:从监视列表中删除特定索引处的表达式watchers
:列出所有观察者及其值(在每个断点上自动列出)repl
:打开调试器的 repl 以在调试脚本的上下文中进行评估exec expr
、p expr
:在调试脚本的上下文中执行表达式并打印其值profile
:启动 CPU 分析会话profileEnd
:停止当前的 CPU 分析会话profiles
:列出所有已完成的 CPU 分析会话profiles[n].save(filepath = 'node.cpuprofile')
:将 CPU 分析会话以 JSON 格式保存到磁盘takeHeapSnapshot(filepath = 'node.heapsnapshot')
:拍摄堆快照并以 JSON 格式保存到磁盘
执行控制#
run
:运行脚本(在调试器启动时自动运行)restart
:重新启动脚本kill
:终止脚本
各种各样的#
scripts
:列出所有加载的脚本version
:显示 V8 的版本
高级用法#
Node.js 的 V8 检查器集成#
V8 Inspector 集成允许将 Chrome DevTools 附加到 Node.js 实例以进行调试和分析。它使用 Chrome DevTools 协议。
可以通过在启动 Node.js 应用程序时传递--inspect
标志来启用 V8 Inspector。还可以提供带有该标志的自定义端口,例如--inspect=9222
将接受端口 9222 上的 DevTools 连接。
要在应用程序代码的第一行中断,请传递--inspect-brk
标志而不是--inspect
。
$ node --inspect index.js
Debugger listening on ws://127.0.0.1:9229/dc9010dd-f8b8-4ac5-a510-c1a114ec7d29
For help, see: https://nodejs.org/en/docs/inspector
(在上面的示例中,URL 末尾的 UUID dc9010dd-f8b8-4ac5-a510-c1a114ec7d29 是动态生成的,它在不同的调试会话中有所不同。)
如果 Chrome 浏览器版本低于 66.0.3345.0,请在上述网址中使用inspector.html
而不是js_app.html
。