Electron启动和禁用调试工具的方法

1. 启用调试工具Electron中打开调试窗口的方法有多种,但前提都需要在创建Browser Window时启用devTools特性,如: 12345678const win = new BrowserWindow({ width: 1080, height: 768, title: "test window", webPreferences: { devTools: true }});

Electron