const installExtension = require('electron-devtools-installer'); ``` ### 步骤2:使用electron-devtools-installer模块安装DevTools扩展 接下来,我们可以使用installExtension()函数来安装所需的DevTools扩展。在这里,我们以React Developer Tools为例,你也可以根据需要替换为其他扩展的名称。 ```javascript installExtens...
npm install electron-devtools-installer --save-dev or yarn add electron-devtools-installer -D Usage All you have to do now is this in themainprocess of your application. import{installExtension,REDUX_DEVTOOLS}from'electron-devtools-installer';// Or if you can not use ES6 imports/**const { ...
yarn add electron-devtools-installer -D Usage All you have to do now is this in themainprocess of your application. importinstallExtension, { REDUX_DEVTOOLS }from'electron-devtools-installer';// Or if you can not use ES6 imports/** const { default: installExtension, REACT_DEVELOPER_TOOLS }...
Breadcrumbs electron-devtools-installer / .gitignore Latest commit tomgao365 feat: init project 5623e33· Dec 2, 2023 HistoryHistory File metadata and controls Code Blame 58 lines (48 loc) · 572 Bytes Raw # logs *.log lerna-debug.log* logs npm-debug.log* pnpm-debug.log* yarn-debug....
npm install electron-devtools-installer --save-dev oryarn add electron-devtools-installer -D UsageAll you have to do now is this in the main process of your application.import installExtension, { REDUX_DEVTOOLS } from 'electron-devtools-installer'; // Or if you can not use ES6 imports /*...
TPC_GrownDragon/electron-devtools-installer forked fromOSS-STUDIO/electron-devtools-installer 加入Gitee 与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :) 免费加入 已有帐号?立即登录 master 克隆/下载 git config --global user.name userName git config --global user.email userEmail ...
declaremodule"electron-devtools-installer"{interfaceExtensionReference{id:string;electron:string;}// Default installation functionexportdefaultfunction(extensionReference:ExtensionReference|string|Array<ExtensionReference|string>,forceDownload?:boolean,):Promise<string>;// Devtools themselfexportconstEMBER_INSPECTOR:...
Electron DevTools安装程序 这是将DevTool扩展安装到Electron中的简便方法。 您不必费心去下载扩展程序,找到正确的文件夹,然后为每个人的计算机配置路径。 安装 npm install electron-devtools-installer --save-dev 或者 yarn add electron-devtools-installer -D 用法 现在您要做的就是在应用程序的主要过程中进行此...
作为名称传递的REACT_PERFORMANCE_DEVTOOLS对我有效。
installExtension(VUEJS_DEVTOOLS); installExtension(REDUX_DEVTOOLS); installExtension(REACT_PERF); installExtension('abcdefghijkl'); 开发者ID:DavidKDeutsch,项目名称:DefinitelyTyped,代码行数:20,代码来源:electron-devtools-installer-tests.ts 示例8: ...