前端桌面化

前端桌面化

主流技术介绍

  • 目前主流的前端桌面化技术有electron、nwjs,本文将分别对这两种技术进行简单的研究

electron

// 安装electron
npm install --save electron
// 查看electron版本
electron -v
// GitHub上下载实例代码
git clone https://github.com/electron/electron-quick-start
// 运行quick-start
cd electron-quick-start
npm install
npm start

nwjs

{
  "name":"WeChat",
  "main":"docs/index.html",
  "window":{
        "id": "wechat",
        "title":"WeChat",
        "toolbar":false,
        "frame":true,
        "position":"center",
        "always-on-top":true,
        "width":1000,
        "height":728,
        "as_desktop": true,
        "show_in_taskbar": true
    },
    "domain": "wechat_app",
    "version": "1.0",
    "dependencies": {}
}
// 运行nwjs命令
nw

你可能感兴趣的:(前端桌面化)