编译的Electron App中的调试器

时间:2017-05-04 10:12:17

标签: debugging exe electron

我需要在已编译的Windows应用程序(电子应用程序)中使用chrome调试程序

我的main.js:

const electron = require('electron')
require('electron-debug')({showDevTools: true});
const app = electron.app
const BrowserWindow = electron.BrowserWindow

const path = require('path')
const url = require('url')

let mainWindow

function createWindow () {

  mainWindow = new BrowserWindow({width: 800, height: 800})
   mainWindow.loadURL('https://camservices.prointernet.com/client.html');

  mainWindow.on('closed', function () {

    mainWindow = null
  })
}
app.on('ready', createWindow)
app.on('window-all-closed', function () {

  if (process.platform !== 'darwin') {
    app.quit()
  }
})

app.on('activate', function () {

  if (mainWindow === null) {
    createWindow()
  }
})

但调试器不会出现在已编译的应用程序上。

1 个答案:

答案 0 :(得分:2)

根据documentation,您可以通过添加require('electron-debug')({showDevTools: true, enabled: true}); 属性强制它在制作应用中显示。

POST http://localhost:3000/mail/contact_me.php 404 (Not Found)