如何调试nodejs

December 17, 2023
测试
测试
测试
测试
1 分钟阅读

使用node-inspector来调试node

安装

npm install -g node-inspector

启动

  • 启动要调试的项目: node --debug 文件名
  • 启动node-inspector:node-inspector --web-port=11111 默认监听端口为 8080
  • 用chrome浏览器打开 http://127.0.0.1:11111/debug?port=5858 选择文件打断点之类

一些选项

         Option             Default                  Description
    --help            |                 |   Print information about options
    --web-port        |      8080       |   Port to host the inspector
    --web-host        |    127.0.0.1    |   Host to listen on
    --debug-port      |      5858       |   Port to connect to the debugging app
    --save-live-edit  |      false      |   Save live edit changes to disk (update the edited files)
    --hidden          |       []        |   Array of files to hide from the UI
                      |                 |   Breakpoints in these files will be ignored

更多

  • node-inspector github

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多