Window10 Electron 開發環境搭建及打包exe程序

 

1.安裝 Electron 首先要安裝Node.js     (安裝方法:https://www.cnblogs.com/inkwhite/p/9685520.html)html

   我這裏已經安裝好了。前端

 

2:安裝Electron node

C:\Users\Administrator>npm install --g electron-prebuilt

安裝完成web

 

一、找到你的前端網頁項目文件夾,新建 package.json、main.js、index.html 三個文件(注:其中的 index.html 是你的網頁首頁)npm

你的項目目錄/
├── package.json
├── main.js
└── index.html

二、在 package.json 中添加以下內容json

 

{
  "name"    : "app-name",
  "version" : "0.1.0",
  "main"    : "main.js"
}

三、在 main.js 中添加下面的內容,這個 main.js 文件就是上面 package.json 中的 "main"鍵 的值,因此可根據須要修改windows

 

const {app, BrowserWindow} = require('electron')
const path = require('path')
const url = require('url')
 
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win
 
function createWindow () {
  // Create the browser window.
  win = new BrowserWindow({width: 800, height: 600})
 
  // and load the index.html of the app.
  win.loadURL(url.format({
    pathname: path.join(__dirname, 'index.html'),
    protocol: 'file:',
    slashes: true
  }))
 
  // Open the DevTools.
  // win.webContents.openDevTools()
 
  // Emitted when the window is closed.
  win.on('closed', () => {
    // Dereference the window object, usually you would store windows
    // in an array if your app supports multi windows, this is the time
    // when you should delete the corresponding element.
    win = null
  })
}
 
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
 
// Quit when all windows are closed.
app.on('window-all-closed', () => {
  // On macOS it is common for applications and their menu bar
  // to stay active until the user quits explicitly with Cmd + Q
  if (process.platform !== 'darwin') {
    app.quit()
  }
})
 
app.on('activate', () => {
  // On macOS it's common to re-create a window in the app when the
  // dock icon is clicked and there are no other windows open.
  if (win === null) {
    createWindow()
  }
})
 
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
View Code

四、若是你的網頁首頁的文件名不是 「index.html」,那麼請在 main.js 中將其中的 'index.html' 修改成你的網頁首頁名app

 

五、打開 DOS,cd 到你的項目目錄,執行 npm install electron-packager -g全局安裝咱們的打包神器electron

npm install electron-packager -g

 

 6.打包ide

electron-packager . 可執行文件的文件名 --win --out 打包成的文件夾名 --arch=x64位仍是32位 --version-electron 版本號 --overwrite --ignore=node_modules

electron-packager . app --win --out presenterTool --arch=x64 --electron-version 1.4.13 --overwrite --ignore=node_modules

 

 

 

 

相關文章
相關標籤/搜索