node-webkit を使用して初めてのデスクトップ アプリケーションを作成しています。
すべての手順に従って Windows でアプリをパッケージ化しましたが、次のエラーが発生します。
There is no 'package.json' in the package, please make sure the 'package.json' is in the root of the package.
パッケージはルートにありますが。
node-webkit を使用して初めてのデスクトップ アプリケーションを作成しています。
すべての手順に従って Windows でアプリをパッケージ化しましたが、次のエラーが発生します。
There is no 'package.json' in the package, please make sure the 'package.json' is in the root of the package.
パッケージはルートにありますが。
サンプルの package.json ファイル
{
"name": "name of app",
"version": "1.0.0",
"main": "index.html",
"single-instance": true,
"node-remote": "<local>",
"window": {
"title": "name to show in title bar",
"icon": "icon to show in titlebar",
"position": "center",
"min_width": 1024,
"min_height": 600,
"toolbar": true,
"width": 1362,
"height": 768
},
"dependencies": {
"express": "3.x"
},
"webkit": {
"plugin": true
}
}
わかりました、間違いを見つけました。実際、パッケージ json とその他のファイルを含むフォルダーを圧縮していました。だから私が作ったのはそのようなものでした:
App.zip
|
|-App
|-package.json
|-Other files
正しいのは次のとおりです。
App.zip
|-package.json
|-Other files