前回Electronの開発環境を構築したので、今回は簡単な動作プログラムを作成してみます。
mainプログラムを作成していきます。
package.jsを確認してください。
{
"name": "electron",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
mainタグに書かれているソースが最初に読み込まれます。
当方の環境で定義されている「index.js」を作成します。
次に「index.html」を作成します。
フォルダ構成は下記です。
上記ファイルがあるディレクトリでコマンドを実行します。
electron .
下記のウィンドウが表示されます。