国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

Electron 主進程調(diào)試

2018-10-03 18:23 更新

瀏覽器窗口的開發(fā)工具僅能調(diào)試渲染器的進程腳本(比如 web 頁面)。為了提供一個可以調(diào)試主進程的方法,Electron 提供了 --debug--debug-brk 開關。

命令行開關

使用如下的命令行開關來調(diào)試 Electron 的主進程:

--debug=[port]

當這個開關用于 Electron 時,它將會監(jiān)聽 V8 引擎中有關 port 的調(diào)試器協(xié)議信息。默認的 port5858。

--debug-brk=[port]

就像 --debug 一樣,但是會在第一行暫停腳本運行。

使用 node-inspector 來調(diào)試

備注: Electron 目前對 node-inspector 支持的不是特別好,如果你通過 node-inspector 的 console 來檢查 process 對象,主進程就會崩潰。

1. 確認你已經(jīng)安裝了 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. 為 Electron 重新編譯 node-inspector v8 模塊(將 target 參數(shù)修改為你的 Electron 的版本號)

$ node_modules/.bin/node-pre-gyp --target=0.36.2 --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.2 --runtime=electron --fallback-to-build --directory node_modules/v8-profiler/ --dist-url=https://atom.io/download/atom-shell reinstall

[How to install native modules][how-to-install-native-modules].

5. 打開 Electron 的調(diào)試模式

你也可以用調(diào)試參數(shù)來運行 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. 加載調(diào)試器界面

在 Chrome 中打開 http://127.0.0.1:8080/debug?ws=127.0.0.1:8080&port=5858
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號