99久久久精品国产电影,亚洲国产初高中生女AV,欧美国产在线一区精品自拍,国产精品无码久久综合

Skip to main content

electron打包多平臺(tái)

一、核心打包工具

  • electron-packager:官方推薦的基礎(chǔ)打包工具,可生成未簽名的可執(zhí)行文件(.exe)或文件夾形式的應(yīng)用。
  • electron-builder:功能更強(qiáng)大的打包工具,支持生成安裝包(.exe、.msi)、自動(dòng)簽名、配置圖標(biāo)、添加安裝向?qū)У龋m合生產(chǎn)環(huán)境。

實(shí)際開發(fā)中,electron-builder 因功能全面而被廣泛使用,本文采用electron-builder。

二、Windows 打包格式

  1. NSIS 安裝包(.exe)
    • 最常用的格式,支持自定義安裝路徑、創(chuàng)建桌面快捷方式、添加卸載程序等,適合普通用戶安裝。
    • 基于 NSIS(Nullsoft Scriptable Install System)腳本,可通過配置文件自定義安裝流程。

三、基本打包步驟

安裝依賴
bash
 
  npm install electron-builder --save-dev
                                                              

配置 package.json
package.json 中添加打包配置(build 字段),指定 Windows 相關(guān)參數(shù):

{
? "name": "examination-system",
? "version": "1.0.0",
? "description": "***",
? "main": "main.js",
? "type": "commonjs",
? "homepage": "http://m.shikeng.cn/",
? "author": "***",
? "scripts": {
? ??"dev": "electron .",
? ??"build:linux": "electron-builder --linux",
? ??"build:win": "electron-builder --win"
? },
? "devDependencies": {
? ??"electron": "^37.2.1",
? ??"electron-builder": "^26.0.12"
? },
? "build": {
? ??"appId": "ynqkjd.com.examination-system",
? ??"copyright": "Copyright ? 2025 ${author}",
? ??"linux": {
? ? ??"category": "Utility",
? ? ??"target": [
? ? ? ??{
? ? ? ? ??"target": "deb",
? ? ? ? ??"arch": ["x64", "arm64"]
? ? ? ??}
? ? ??],
? ? ??"maintainer": "***",
? ? ??"icon": "icons/",
? ? ??"desktop": {
? ? ? ??"entry": {
? ? ? ? ??"Name": "***",
? ? ? ? ??"Comment": "***",
? ? ? ? ??"Keywords": "***",
? ? ? ? ??"Terminal": "false",
? ? ? ? ??"Icon": "***",
? ? ? ? ??"Type": "Application",
? ? ? ? ??"Categories": "Utility;Examination;",
? ? ? ? ??"StartupWMClass": "***"
? ? ? ??}
? ? ??}
? ??},
? ??"win": {
? ? ??"target": [
? ? ? ??{
? ? ? ? ??"target": "nsis",
? ? ? ? ??"arch": [
? ? ? ? ? ??"ia32"
? ? ? ? ??]
? ? ? ??}
? ? ??],
? ? ??"icon": "win/winIcon/win.ico",
? ? ??"artifactName": "${productName}_v${version}_${arch}.${ext}"
? ??},
? ??"nsis": {
? ? ??"include": "installer.nsi",
? ? ??"oneClick": false,
? ? ??"allowToChangeInstallationDirectory": true
? ??}
? },
? "dependencies": {
? ??"serve-static": "^2.2.0",
? ??"winston": "^3.17.0"
? }
}

全控多年專注非標(biāo)設(shè)備研發(fā)、生產(chǎn)

  • 聯(lián)系人: 王經(jīng)理
  • 云南省昆明市呈貢區(qū)華潮商務(wù)園(常山路50米)
  • 13888610742 | 0871-67171886
  • jiawu-wang@126.com