node-webkit 写桌面系统
Posted DNMCM
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node-webkit 写桌面系统相关的知识,希望对你有一定的参考价值。
【1.使用nodejs】
和很多人一样,百度了很久很久,没看到有恰到点的解释的,当时我已经怀疑到是配置出来的,而非引js,最后确实啥都不用引
实际关键在package.json加入设置"nodejs":true,
{ "name": "GameCoin", "main": "index.html", "nodejs":true, "window": { "toolbar": false, "width": 800, "height": 580 } }
js代码中直接写:
<script> var fs = require("fs") ; fs.readFile("bb.txt","utf8",function (error,data){ if(error)
{
throw error ;
} alert(data) ; }) ; </script>
以上是关于node-webkit 写桌面系统的主要内容,如果未能解决你的问题,请参考以下文章
VS Code + NWJS(Node-Webkit)0.14.7 + SQLite3 + Angular6 构建跨平台桌面应用