nw-local-server-example:在NW.js中使用本地Web服务器的示例

时间:2024-05-29 20:29:17
【文件属性】:

文件名称:nw-local-server-example:在NW.js中使用本地Web服务器的示例

文件大小:6KB

文件格式:ZIP

更新时间:2024-05-29 20:29:17

HTML

nw-本地服务器 在NW.js中使用本地Web服务器的示例 怎么跑 安装和npm(Node附带) 下载或克隆仓库 npm install npm start 这是如何工作的 npm install会将NW.js和Express下载到node_modules文件夹中。 npm start将从项目的根目录启动NW.js。 NW.js将查看package.json并看到将"node-main"设置为server.js 。 这将是NW.js运行的第一件事,并在加载窗口之前在“节点上下文”中运行此脚本。 server.js在端口3000上运行并启动Express服务器。 接下来的NW.js将查看package.json并看到将"main"设置为http://localhost:3000 。 通常将main设置为index.html ,它告诉NW.js为应用程序的UI加载的第一页是什么。


【文件预览】:
nw-local-server-example-master
----index.html(525B)
----server.js(256B)
----page2.html(441B)
----LICENSE(1KB)
----README.md(2KB)
----CODE_OF_CONDUCT.md(4KB)
----.gitignore(891B)
----package.json(552B)

网友评论