我有一个骨干网络应用程序,一切正常,在我的浏览器中。现在我想用Node webkit创建一个.exe。
这是我的package.json文件:
{
"name": "XXXX",
"main": "index.html",
"window": {
"toolbar": true,
"width": 800,
"height": 600
},
"single-instance": false,
"version": "1alpha",
"private": true
}
但是当我执行程序时,我在js控制台中获取这些消息:
You do not have permission to use the appview element. Be sure to declare the 'appview' permission in your manifest file and use the --enable-app-view command line flag.
我一直在修复它here,但我找不到任何解决方案。
有什么想法吗?感谢
答案 0 :(得分:0)
我找到了任何部分解决方案。如果将主选项更改为:
"main": "http://localhost:8000",
它运行良好,但我需要先启动一个小型Web服务器,我不想这样做。有什么想法吗?