Electron指南 - 调试主历程

调试主历程

阅读器窗口的DevTools只能调试衬着历程的剧本(比方Web页面)。为了供应一种方法来调试主历程中的剧本,Electron供应了 –debug 以及 –debug-brk 的选项开关。

命令行开关

运用以下命令行切换到调试Electron的主历程形式:

--debug=[port]

这个开关将使得Electron运用V8调试协定侦听在指定端口上。默许侦听端口是5858。

--debug-brk=[port]

类似于 –debug 然则这个开关将在剧本的第一行停息实行。

运用node-inspector来调试

注重: 当前的Electron和node-inspector事情的不是非常好,而且当你在node-inspector的控制台搜检 process 对象的时刻主历程将会挂掉。

  1. 确信装置了node-gyp及其依靠的东西

  2. 装置node-inspector

    $ npm install node-inspector
  3. 装置 node-pre-gyp 补丁

    $ npm install git+https://git@github.com/enlight/node-pre-gyp.git#detect-electron-runtime-in-find
  4. 从新编译 node-inspector V8 模块 (转变编译目的至你的Electron版本号)

    $ node_modules/.bin/node-pre-gyp --target=0.36.11 --runtime=electron --fallback-to-build --directory node_modules/v8-debug/ --dist-url=https://atom.io/download/atom-shell reinstall
    $ node_modules/.bin/node-pre-gyp --target=0.36.11 --runtime=electron --fallback-to-build --directory node_modules/v8-profiler/ --dist-url=https://atom.io/download/atom-shell reinstall
    查阅[怎样装置当地模块](http://electron.atom.io/docs/tutorial/using-native-node-modules#how-to-install-native-modules)
  5. 翻开Electron调试形式

    你能够运用一个debug标志来翻开Electron,比方:
    $ electron --debug=5858 your/app
    或在剧本第一行停息
    $ electron --debug-brk=5858 your/app
  6. 运用electron启动node-inspector

    $ ELECTRON_RUN_AS_NODE=true path/to/electron.exe node_modules/node-inspector/bin/inspector.js
  7. 装载调试器UI

    在Chrome阅读器中翻开 *http://127.0.0.1:8080/debug?ws=127.0.0.1:8080&port=5858*。 假如运用debug-brk来启动的话你必需点击停息来看的看到完全的行。
    

本文翻译自[这里] (http://electron.atom.io/docs/tutorial/debugging-main-process/)
未经受权,制止转载。

更多文章请阅读我的博客:@gihub, @coding

    原文作者:min
    原文地址: https://segmentfault.com/a/1190000005598234
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞