# 将网页项目打包成桌面应用Electron的使用

将网页项目打包成桌面应用Electron的使用

介绍一下electron

Electron是由Github开发,用HTML,CSS和JavaScript来构建跨平台桌面应用程序的一个开源库。 Electron通过将Chromium和Node.js合并到同一个运行时环境中,并将其打包为Mac,Windows和Linux系统下的应用来实现这一目的。
Electron的开发可以参考官方文档,这里只说开发结束后怎么将html,css,js打包成exe的桌面可执行文件。

  1. 首先你必须已经安装了node.js
    2.然后你需要全局安装,electron-packager.
    3.node.js安装方法请参考官网。

electron-packager安装方法如下:

1  |npm install electron-packager -g

打包步骤如下:
1、找到你的前端网页项目文件夹,新建 package.json、main.js、index.html 三个文件(注:其中的 index.html 是你的网页首页)

你的项目目录/
├── package.json
├── main.js
└── index.html
2、在 package.json 中添加如下内容


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

3、在 main.js 中添加下面的内容,这个 main.js 文件就是上面 package.json 中的 "main"键 的值,所以可根据需要修改

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.

(参考electron官方demo electron-quick-start的main.js文件)
4、如果你的网页首页的文件名不是 “index.html”,那么请在 main.js 中将其中的 ‘index.html’ 修改为你的网页首页名

5、在项目目录下(即要打包的项目中main.js所在目录的空白处)打开DOS窗口,输入
electron-packager . app --win --out presenterTool --arch=x64 --electron-version 1.4.14 --overwrite --ignore=node_modules
即可开始打包

electron-packager . app --win --out presenterTool --arch=x64 --electron-version 1.4.14 --overwrite --ignore=node_modules 
这个命令什么意思?汉字部分可自行修改:

electron-packager . 可执行文件的文件名 --win --out 打包成的文件夹名 --arch=x64位还是32位  --electron-version 版本号 --overwrite --ignore=node_modules

6、打包成功后,会生成一个新的文件夹,点进去,找到 exe 文件,双击就可以看到网页变成了一个桌面应用啦!

再分享一个怎样在electron上进行桌面应用的开发

electron 安装

npm install electron --save-dev --save-exact

哎算了 给个地址自己去看了吧。
electron入门心得(当然不是我写的)

你可能感兴趣的:(适合初学者)