ubuntu下可以使用nativefier来打包一些网页成为桌面应用,具体安装步骤:
1、安装nodejs
:https://blog.csdn.net/wangtaoking1/article/details/78005038
$ sudo apt-get update
$ sudo apt-get install python-software-properties
$ sudo apt-get install curl
$ curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
$ sudo apt-get install nodejs
安装完成之后查看版本:
$ node -v
v8.5.0
$ npm -v
v5.3.0
2、安装nativefier
https://github.com/jiahaog/nativefier
sudo npm install nativefier -g
3、打包网页
nativefier --name "wechat" "http://medium.com"
设置APP图标:
进到resources文件夹,找到一个图片,将其复制到该目录下并命名为icon.png即可
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/121278.html