我不确定这是否可能。我想知道是否有办法指定启动 node-webkit 时打开的索引文件。即,我试图覆盖"main"
清单文件中的密钥。
这是设置的基本示例以及我想要做的事情:
包.json:
{
"main": "index.html",
"name": "nw-demo",
...
}
包看起来像这样:
app.nw
| -- package.json
` -- index.html
` -- anotherIndex.html
...
所需命令:
nw app.nw --main="anotherIndex.html"
我知道此处--url="FILE.html"
指定的命令行开关,但是当我通过此参数时 node-webkit 根本无法打开。