NW.js 教程
第一步:安装 node.js
hps://nodejs.org/en/download/
第二步:安装 NW
npm install nw -g
第三步:下载 NW.js
http://nwjs.io/ 选择 SDK 版本
第四步:项目准备,目录结构
app 文件夹
+----index.html
+----package.json
index.html 代码:
<!DOCTYPE html><html>
<head>
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
</body></html>
package.json 代码:(可使用 npm init 生成,下面两项属性必须)
{
"name": "app",
"main": "index.html"
}
运行看看
nw app 或 nw .
第五步 压缩文件夹并更名为 app.nw (注意要 zip 格式压缩)
第六步 将 app.nw 跟 nw 一起打包成一个可执行文件
把 app.nw 复制到 nw 目录下,执行
评论4
最新资源