WebStormでElectronを始める手順
はじめに(2020/4/8 追記)
展示会やデジタルサイネージなど、Webとは異なり、特定のPCでの動作を想定したアプリケーションの作成は、Adobe Air や Unityなどで作成する事がありますが、最近はJavaScriptだけで色々出来るようになってきたので、Electronを使ってアプリケーションを作成したいと思いました。IDEは、WebStormを使っているので、WebStormでElectronを開発するための手順を書いています。
※追記(2020/4/8)
最近この記事を元にElectronを作ってみたら、デバッグが起動しなくなってしまったので、
新しく「WebStormでElectronの始め方とアプリの作り方」という記事を書きました。動かない場合はこちらを参照してみてください。
目次
- 環境
- WebStormでの準備
- index.htmlとmain.jsファイルを作る
- デバッグの設定
- 参考サイト
1. 環境
- Windows10 Pro
- Node.js : v10.15.3
- WebStorm : 2019.1.3
2. WebStormでの準備
Node.jsは既にインストールされている状態で、WebStormを起動します。
起動したら、create project
を選択します。
New Project画面で、Node.js
を選択し、Locationに任意のプロジェクトを作ります。(ここではelectron_webstorm
としています)
+
を選択して、Available Packages画面の検索枠に electron
と入力し、リスト内のelectron
を選択します。
INSTALL PACKAGE
を選択して、インストールします。
Package 'electron' installed successfully
と出ればインストールできていますので、画面を閉じます。
package.json
に dependencies
が追加され、electron
という項目が増えています。同様に、node_modules
に、electron
が追加されていることが確認できます。
3. index.htmlとmain.jsファイルを作る
WebStormでここまで作成した場合、package.json
には、mainファイル
が index.js
と指定されていますが、Electronのサイトでは main.js
がデフォルトみたいなので、ここの記載を変更します。
-
Electronのサイトから、ベースとなるindex.htmlの中身とmain.jsの中身をコピペします。
コードは Writing Your First Electron App から引用
main.js
const { app, BrowserWindow } = require('electron')
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win
function createWindow () {
// Create the browser window.
win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
}
})
// and load the index.html of the app.
win.loadFile('index.html')
// Open the DevTools.
win.webContents.openDevTools()
// Emitted when the window is closed.
win.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null
})
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (win === null) {
createWindow()
}
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</body>
</html>
4. デバッグの設定
- 画面右上の
ADD CONFIGURATION...
を選択し、Run/Debug Configurations
画面を開く
Node interpreter
の入力欄の右にある...
を選択し、開いた画面の +
を選択し、Add Local...
を選択して、最初に追加したElectronの electron.cmd
を、node_moduleより追加します。
Node parameters
に .
を入力
Working directory
は変更なし
JavaScript file
に main.js
を入力
Application parameters
に --remote-debugging-port=9222
を入力
Environment variables
は変更なし
画面右上の歯車アイコンを押すとデバッグウィンドウが立ち上がり、Hello World
の画面が出れば成功です。お疲れ様でした。
5. 参考サイト
- Windows10 Pro
- Node.js : v10.15.3
- WebStorm : 2019.1.3
2. WebStormでの準備
Node.jsは既にインストールされている状態で、WebStormを起動します。
起動したら、create project
を選択します。
New Project画面で、Node.js
を選択し、Locationに任意のプロジェクトを作ります。(ここではelectron_webstorm
としています)
+
を選択して、Available Packages画面の検索枠に electron
と入力し、リスト内のelectron
を選択します。
INSTALL PACKAGE
を選択して、インストールします。
Package 'electron' installed successfully
と出ればインストールできていますので、画面を閉じます。
package.json
に dependencies
が追加され、electron
という項目が増えています。同様に、node_modules
に、electron
が追加されていることが確認できます。
3. index.htmlとmain.jsファイルを作る
WebStormでここまで作成した場合、package.json
には、mainファイル
が index.js
と指定されていますが、Electronのサイトでは main.js
がデフォルトみたいなので、ここの記載を変更します。
-
Electronのサイトから、ベースとなるindex.htmlの中身とmain.jsの中身をコピペします。
コードは Writing Your First Electron App から引用
main.js
const { app, BrowserWindow } = require('electron')
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win
function createWindow () {
// Create the browser window.
win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
}
})
// and load the index.html of the app.
win.loadFile('index.html')
// Open the DevTools.
win.webContents.openDevTools()
// Emitted when the window is closed.
win.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null
})
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (win === null) {
createWindow()
}
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</body>
</html>
4. デバッグの設定
- 画面右上の
ADD CONFIGURATION...
を選択し、Run/Debug Configurations
画面を開く
Node interpreter
の入力欄の右にある...
を選択し、開いた画面の +
を選択し、Add Local...
を選択して、最初に追加したElectronの electron.cmd
を、node_moduleより追加します。
Node parameters
に .
を入力
Working directory
は変更なし
JavaScript file
に main.js
を入力
Application parameters
に --remote-debugging-port=9222
を入力
Environment variables
は変更なし
画面右上の歯車アイコンを押すとデバッグウィンドウが立ち上がり、Hello World
の画面が出れば成功です。お疲れ様でした。
5. 参考サイト
Node.jsは既にインストールされている状態で、WebStormを起動します。
起動したら、create project
を選択します。
New Project画面で、Node.js
を選択し、Locationに任意のプロジェクトを作ります。(ここではelectron_webstorm
としています)
+
を選択して、Available Packages画面の検索枠に electron
と入力し、リスト内のelectron
を選択します。
INSTALL PACKAGE
を選択して、インストールします。
Package 'electron' installed successfully
と出ればインストールできていますので、画面を閉じます。
package.json
に dependencies
が追加され、electron
という項目が増えています。同様に、node_modules
に、electron
が追加されていることが確認できます。
WebStormでここまで作成した場合、
package.json
には、mainファイル
がindex.js
と指定されていますが、Electronのサイトではmain.js
がデフォルトみたいなので、ここの記載を変更します。
-
Electronのサイトから、ベースとなるindex.htmlの中身とmain.jsの中身をコピペします。
コードは Writing Your First Electron App から引用
const { app, BrowserWindow } = require('electron')
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win
function createWindow () {
// Create the browser window.
win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
}
})
// and load the index.html of the app.
win.loadFile('index.html')
// Open the DevTools.
win.webContents.openDevTools()
// Emitted when the window is closed.
win.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null
})
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (win === null) {
createWindow()
}
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</body>
</html>
4. デバッグの設定
- 画面右上の
ADD CONFIGURATION...
を選択し、Run/Debug Configurations
画面を開く
Node interpreter
の入力欄の右にある...
を選択し、開いた画面の +
を選択し、Add Local...
を選択して、最初に追加したElectronの electron.cmd
を、node_moduleより追加します。
Node parameters
に .
を入力
Working directory
は変更なし
JavaScript file
に main.js
を入力
Application parameters
に --remote-debugging-port=9222
を入力
Environment variables
は変更なし
画面右上の歯車アイコンを押すとデバッグウィンドウが立ち上がり、Hello World
の画面が出れば成功です。お疲れ様でした。
5. 参考サイト
ADD CONFIGURATION...
を選択し、Run/Debug Configurations
画面を開くNode interpreter
の入力欄の右にある...
を選択し、開いた画面の +
を選択し、Add Local...
を選択して、最初に追加したElectronの electron.cmd
を、node_moduleより追加します。
Node parameters
に .
を入力
Working directory
は変更なし
JavaScript file
に main.js
を入力
Application parameters
に --remote-debugging-port=9222
を入力
Environment variables
は変更なし
画面右上の歯車アイコンを押すとデバッグウィンドウが立ち上がり、Hello World
の画面が出れば成功です。お疲れ様でした。
Author And Source
この問題について(WebStormでElectronを始める手順), 我々は、より多くの情報をここで見つけました https://qiita.com/kaluna/items/789f91b938d28f267155著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .