SfTian 打包网站为Windows程序 #打包网站为Windows程序 ####如何优雅的把网站封装为Windows的EXE客户端呢? 这里我们提供了方案! ####Step1.安装NodeJS 去nodejs的[官网](http://www.nodejs.org "官网")下载最新的安装包,安装成功后在CMD命令行中输入 ```npm -v``` 输出类似于下图就表示安装成功了 [![](https://download.imxbt.cn/upload/1633258637a.png )](https://download.imxbt.cn/upload/1633258637a.png ) ####Step2.使用NPM安装nativefier nativefier是一个Github上开源的项目 地址:https://github.com/nativefier/nativefier ```npm install nativefier -g``` [![](https://download.imxbt.cn/upload/1633258845a.png )](https://download.imxbt.cn/upload/1633258845a.png ) ####Step3.打包网站 这里演示打包[GameRole](http://www.gamerole.cn "GameRole")的主页 ```nativefier --icon C:\temp\favicon.ico --name "GameRole" "http://www.gamerole.cn"``` ######注意! --icon是应用的图标 --name是应用名称,两项其实都可以不写,不过根据我自己习惯给加上了 [![](https://download.imxbt.cn/upload/1633260083b.png )](https://download.imxbt.cn/upload/1633260083b.png ) 输出之后可以在```App built to C:\Users\salte\GameRole-win32-x64, move to wherever it makes sense for you and run the contained .exe file``` 该行找to后面的路径,那就是客户端生成的路径,由于内核是Webkit所以APP.exe体积很大 取消回复 发表新评论 提交评论