window下nw小试牛刀

前端之家收集整理的这篇文章主要介绍了window下nw小试牛刀前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先直接到下载nw. 如果不知道nw是什么,就需要先脑补下:
NW.js is an app runtime based on Chromium and node.js. You can write native apps in HTML and JavaScript with NW.js. It also lets you call Node.js modules directly from the DOM and enables a new way of writing native applications with all Web technologies.(摘自 github)

1,npm install -g nw或者下载后直接解压,会在nwjs-v0.13.x-win-xx目录下看到nw.exe,然后环境变量中,在path中增加nw的目录,然后在命令行运行nw,正常会出现一个window窗口,表示安装成功

2,参考nw githhub的文档,建立demo目录,并创建package.json文件内容如下
{
"name": "demo",// 这个名称要和目录同名
"version": "0.0.1",
"main": "index.html"
"window": {

 "toolbar": false   //这个地方没出来,不知道什么原因

}
}
3,创建 main对应的 index.html



Hello World!


Hello World!

We are using node.js .




4,在命令行demo目录下命令行执行 winrar a ./demo.zip ./. (环境变量中,在path中增加winrar的目录)

5,在命令行执行nw demo.zip,就可以看到hello world了。

原文链接:https://www.f2er.com/note/422309.html

猜你在找的程序笔记相关文章