ElectronでDevTools拡張を使う(React, Redux)
Electronの開発時に拡張使いたいですよね。
electron-devetools-installerを使う方法を紹介します。
複数拡張を入れるときどうするんだとちょい迷ったので。
インストール
npm install electron-devtools-installer --save-dev
起動時に拡張をインストール
メインプロセスのファイルでこれらを追加するだけ!おわり!
import installExtension, {
REACT_DEVELOPER_TOOLS,
REDUX_DEVTOOLS
} from "electron-devtools-installer";
...
function createWindow() {
...
installExtension([REDUX_DEVTOOLS, REACT_DEVELOPER_TOOLS])
.then(name => console.log(name))
.catch(err => console.log(err));
}
参考
Author And Source
この問題について(ElectronでDevTools拡張を使う(React, Redux)), 我々は、より多くの情報をここで見つけました https://qiita.com/tsubasa_hiroe/items/923cf79b722f1bfcc55f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .