2021-05-24 02:32:36 +00:00
|
|
|
# Quick Start
|
2013-09-09 07:35:57 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
This guide will step you through the process of creating a barebones Hello World app in
|
|
|
|
Electron, similar to [`electron/electron-quick-start`][quick-start].
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
By the end of this tutorial, your app will open a browser window that displays a web page
|
|
|
|
with information about which Chromium, Node.js, and Electron versions are running.
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
[quick-start]: https://github.com/electron/electron-quick-start
|
2013-08-14 22:43:35 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
## Prerequisites
|
2014-04-30 08:39:49 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
To use Electron, you need to install [Node.js][node-download]. We recommend that you
|
|
|
|
use the latest `LTS` version available.
|
2014-04-30 08:39:49 +00:00
|
|
|
|
2020-10-13 20:15:40 +00:00
|
|
|
> Please install Node.js using pre-built installers for your platform.
|
|
|
|
> You may encounter incompatibility issues with different development tools otherwise.
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
To check that Node.js was installed correctly, type the following commands in your
|
|
|
|
terminal client:
|
2020-10-13 20:15:40 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
node -v
|
|
|
|
npm -v
|
|
|
|
```
|
|
|
|
|
|
|
|
The commands should print the versions of Node.js and npm accordingly.
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
**Note:** Since Electron embeds Node.js into its binary, the version of Node.js running
|
|
|
|
your code is unrelated to the version running on your system.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
[node-download]: https://nodejs.org/en/download/
|
|
|
|
|
|
|
|
## Create your application
|
|
|
|
|
|
|
|
### Scaffold the project
|
|
|
|
|
|
|
|
Electron apps follow the same general structure as other Node.js projects.
|
|
|
|
Start by creating a folder and initializing an npm package.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
```sh npm2yarn
|
|
|
|
mkdir my-electron-app && cd my-electron-app
|
|
|
|
npm init
|
2020-10-13 20:15:40 +00:00
|
|
|
```
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
The interactive `init` command will prompt you to set some fields in your config.
|
|
|
|
There are a few rules to follow for the purposes of this tutorial:
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
* `entry point` should be `main.js`.
|
|
|
|
* `author` and `description` can be any value, but are necessary for
|
|
|
|
[app packaging](#package-and-distribute-your-application).
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
Your `package.json` file should look something like this:
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"name": "my-electron-app",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Hello World!",
|
|
|
|
"main": "main.js",
|
|
|
|
"author": "Jane Doe",
|
|
|
|
"license": "MIT"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
Then, install the `electron` package into your app's `devDependencies`.
|
|
|
|
|
|
|
|
```sh npm2yarn
|
2022-03-22 23:54:08 +00:00
|
|
|
npm install --save-dev electron
|
2021-05-24 02:32:36 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
> Note: If you're encountering any issues with installing Electron, please
|
|
|
|
> refer to the [Advanced Installation][advanced-installation] guide.
|
|
|
|
|
|
|
|
Finally, you want to be able to execute Electron. In the [`scripts`][package-scripts]
|
|
|
|
field of your `package.json` config, add a `start` command like so:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"scripts": {
|
|
|
|
"start": "electron ."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
This `start` command will let you open your app in development mode.
|
|
|
|
|
|
|
|
```sh npm2yarn
|
|
|
|
npm start
|
|
|
|
```
|
|
|
|
|
|
|
|
> Note: This script tells Electron to run on your project's root folder. At this stage,
|
|
|
|
> your app will immediately throw an error telling you that it cannot find an app to run.
|
|
|
|
|
|
|
|
[advanced-installation]: ./installation.md
|
|
|
|
[package-scripts]: https://docs.npmjs.com/cli/v7/using-npm/scripts
|
|
|
|
|
|
|
|
### Run the main process
|
|
|
|
|
|
|
|
The entry point of any Electron application is its `main` script. This script controls the
|
|
|
|
**main process**, which runs in a full Node.js environment and is responsible for
|
|
|
|
controlling your app's lifecycle, displaying native interfaces, performing privileged
|
|
|
|
operations, and managing renderer processes (more on that later).
|
|
|
|
|
|
|
|
During execution, Electron will look for this script in the [`main`][package-json-main]
|
|
|
|
field of the app's `package.json` config, which you should have configured during the
|
|
|
|
[app scaffolding](#scaffold-the-project) step.
|
|
|
|
|
|
|
|
To initialize the `main` script, create an empty file named `main.js` in the root folder
|
|
|
|
of your project.
|
|
|
|
|
|
|
|
> Note: If you run the `start` script again at this point, your app will no longer throw
|
|
|
|
> any errors! However, it won't do anything yet because we haven't added any code into
|
|
|
|
> `main.js`.
|
|
|
|
|
|
|
|
[package-json-main]: https://docs.npmjs.com/cli/v7/configuring-npm/package-json#main
|
|
|
|
|
|
|
|
### Create a web page
|
|
|
|
|
|
|
|
Before we can create a window for our application, we need to create the content that
|
|
|
|
will be loaded into it. In Electron, each window displays web contents that can be loaded
|
2022-01-03 08:59:55 +00:00
|
|
|
from either a local HTML file or a remote URL.
|
2021-05-24 02:32:36 +00:00
|
|
|
|
|
|
|
For this tutorial, you will be doing the former. Create an `index.html` file in the root
|
|
|
|
folder of your project:
|
|
|
|
|
|
|
|
```html
|
|
|
|
<!DOCTYPE html>
|
2024-02-08 01:27:50 +00:00
|
|
|
<html lang="en">
|
2021-05-24 02:32:36 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
|
|
<title>Hello World!</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Hello World!</h1>
|
|
|
|
We are using Node.js <span id="node-version"></span>,
|
|
|
|
Chromium <span id="chrome-version"></span>,
|
|
|
|
and Electron <span id="electron-version"></span>.
|
|
|
|
</body>
|
|
|
|
</html>
|
2020-10-13 20:15:40 +00:00
|
|
|
```
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
> Note: Looking at this HTML document, you can observe that the version numbers are
|
|
|
|
> missing from the body text. We'll manually insert them later using JavaScript.
|
|
|
|
|
|
|
|
### Opening your web page in a browser window
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
Now that you have a web page, load it into an application window. To do so, you'll
|
|
|
|
need two Electron modules:
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
* The [`app`][app] module, which controls your application's event lifecycle.
|
|
|
|
* The [`BrowserWindow`][browser-window] module, which creates and manages application
|
|
|
|
windows.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
Because the main process runs Node.js, you can import these as [CommonJS][commonjs]
|
2023-11-22 06:19:39 +00:00
|
|
|
modules at the top of your `main.js` file:
|
2021-05-24 02:32:36 +00:00
|
|
|
|
|
|
|
```js
|
2020-10-13 20:15:40 +00:00
|
|
|
const { app, BrowserWindow } = require('electron')
|
2021-05-24 02:32:36 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Then, add a `createWindow()` function that loads `index.html` into a new `BrowserWindow`
|
|
|
|
instance.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
```js
|
2021-08-02 01:57:37 +00:00
|
|
|
const createWindow = () => {
|
2020-10-13 20:15:40 +00:00
|
|
|
const win = new BrowserWindow({
|
|
|
|
width: 800,
|
2021-05-24 02:32:36 +00:00
|
|
|
height: 600
|
2020-10-13 20:15:40 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
win.loadFile('index.html')
|
|
|
|
}
|
2021-05-24 02:32:36 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Next, call this `createWindow()` function to open your window.
|
|
|
|
|
|
|
|
In Electron, browser windows can only be created after the `app` module's
|
|
|
|
[`ready`][app-ready] event is fired. You can wait for this event by using the
|
|
|
|
[`app.whenReady()`][app-when-ready] API. Call `createWindow()` after `whenReady()`
|
|
|
|
resolves its Promise.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2023-06-05 07:26:26 +00:00
|
|
|
```js @ts-type={createWindow:()=>void}
|
2021-03-16 23:45:38 +00:00
|
|
|
app.whenReady().then(() => {
|
|
|
|
createWindow()
|
2021-03-18 07:58:03 +00:00
|
|
|
})
|
2021-05-24 02:32:36 +00:00
|
|
|
```
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
> Note: At this point, your Electron application should successfully
|
|
|
|
> open a window that displays your web page!
|
|
|
|
|
|
|
|
[app]: ../api/app.md
|
|
|
|
[browser-window]: ../api/browser-window.md
|
|
|
|
[commonjs]: https://nodejs.org/docs/latest/api/modules.html#modules_modules_commonjs_modules
|
|
|
|
[app-ready]: ../api/app.md#event-ready
|
|
|
|
[app-when-ready]: ../api/app.md#appwhenready
|
|
|
|
|
|
|
|
### Manage your window's lifecycle
|
|
|
|
|
|
|
|
Although you can now open a browser window, you'll need some additional boilerplate code
|
|
|
|
to make it feel more native to each platform. Application windows behave differently on
|
|
|
|
each OS, and Electron puts the responsibility on developers to implement these
|
|
|
|
conventions in their app.
|
|
|
|
|
|
|
|
In general, you can use the `process` global's [`platform`][node-platform] attribute
|
|
|
|
to run code specifically for certain operating systems.
|
|
|
|
|
|
|
|
#### Quit the app when all windows are closed (Windows & Linux)
|
|
|
|
|
|
|
|
On Windows and Linux, exiting all windows generally quits an application entirely.
|
|
|
|
|
|
|
|
To implement this, listen for the `app` module's [`'window-all-closed'`][window-all-closed]
|
|
|
|
event, and call [`app.quit()`][app-quit] if the user is not on macOS (`darwin`).
|
|
|
|
|
|
|
|
```js
|
2021-08-02 01:57:37 +00:00
|
|
|
app.on('window-all-closed', () => {
|
2021-05-24 02:32:36 +00:00
|
|
|
if (process.platform !== 'darwin') app.quit()
|
2020-10-13 20:15:40 +00:00
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
[node-platform]: https://nodejs.org/api/process.html#process_process_platform
|
|
|
|
[window-all-closed]: ../api/app.md#event-window-all-closed
|
2021-07-14 11:59:32 +00:00
|
|
|
[app-quit]: ../api/app.md#appquit
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
#### Open a window if none are open (macOS)
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
Whereas Linux and Windows apps quit when they have no windows open, macOS apps generally
|
|
|
|
continue running even without any windows open, and activating the app when no windows
|
|
|
|
are available should open a new one.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
To implement this feature, listen for the `app` module's [`activate`][activate]
|
|
|
|
event, and call your existing `createWindow()` method if no browser windows are open.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
Because windows cannot be created before the `ready` event, you should only listen for
|
|
|
|
`activate` events after your app is initialized. Do this by attaching your event listener
|
|
|
|
from within your existing `whenReady()` callback.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
[activate]: ../api/app.md#event-activate-macos
|
|
|
|
|
2023-06-05 07:26:26 +00:00
|
|
|
```js @ts-type={createWindow:()=>void}
|
2021-05-24 02:32:36 +00:00
|
|
|
app.whenReady().then(() => {
|
|
|
|
createWindow()
|
|
|
|
|
2021-08-02 01:57:37 +00:00
|
|
|
app.on('activate', () => {
|
2021-05-24 02:32:36 +00:00
|
|
|
if (BrowserWindow.getAllWindows().length === 0) createWindow()
|
|
|
|
})
|
|
|
|
})
|
2020-10-13 20:15:40 +00:00
|
|
|
```
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
> Note: At this point, your window controls should be fully functional!
|
|
|
|
|
|
|
|
### Access Node.js from the renderer with a preload script
|
|
|
|
|
|
|
|
Now, the last thing to do is print out the version numbers for Electron and its
|
|
|
|
dependencies onto your web page.
|
2021-03-16 23:45:38 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
Accessing this information is trivial to do in the main process through Node's
|
|
|
|
global `process` object. However, you can't just edit the DOM from the main
|
|
|
|
process because it has no access to the renderer's `document` context.
|
|
|
|
They're in entirely different processes!
|
2021-03-16 23:45:38 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
> Note: If you need a more in-depth look at Electron processes, see the
|
|
|
|
> [Process Model][] document.
|
|
|
|
|
|
|
|
This is where attaching a **preload** script to your renderer comes in handy.
|
|
|
|
A preload script runs before the renderer process is loaded, and has access to both
|
|
|
|
renderer globals (e.g. `window` and `document`) and a Node.js environment.
|
|
|
|
|
|
|
|
Create a new script named `preload.js` as such:
|
|
|
|
|
|
|
|
```js
|
2021-03-16 23:45:38 +00:00
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
|
|
const replaceText = (selector, text) => {
|
|
|
|
const element = document.getElementById(selector)
|
|
|
|
if (element) element.innerText = text
|
|
|
|
}
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
for (const dependency of ['chrome', 'node', 'electron']) {
|
|
|
|
replaceText(`${dependency}-version`, process.versions[dependency])
|
2021-03-16 23:45:38 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
```
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
The above code accesses the Node.js `process.versions` object and runs a basic `replaceText`
|
|
|
|
helper function to insert the version numbers into the HTML document.
|
2021-03-16 23:45:38 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
To attach this script to your renderer process, pass in the path to your preload script
|
|
|
|
to the `webPreferences.preload` option in your existing `BrowserWindow` constructor.
|
2021-03-16 23:45:38 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
```js
|
2023-06-05 07:26:26 +00:00
|
|
|
const { app, BrowserWindow } = require('electron')
|
2021-05-24 02:32:36 +00:00
|
|
|
// include the Node.js 'path' module at the top of your file
|
2023-08-30 15:55:23 +00:00
|
|
|
const path = require('node:path')
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
// modify your existing createWindow() function
|
2021-08-02 01:57:37 +00:00
|
|
|
const createWindow = () => {
|
2021-05-24 02:32:36 +00:00
|
|
|
const win = new BrowserWindow({
|
|
|
|
width: 800,
|
|
|
|
height: 600,
|
2021-05-27 18:46:32 +00:00
|
|
|
webPreferences: {
|
|
|
|
preload: path.join(__dirname, 'preload.js')
|
|
|
|
}
|
2021-05-24 02:32:36 +00:00
|
|
|
})
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
win.loadFile('index.html')
|
2020-10-13 20:15:40 +00:00
|
|
|
}
|
2021-05-24 02:32:36 +00:00
|
|
|
// ...
|
2020-10-13 20:15:40 +00:00
|
|
|
```
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
There are two Node.js concepts that are used here:
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
* The [`__dirname`][dirname] string points to the path of the currently executing script
|
|
|
|
(in this case, your project's root folder).
|
|
|
|
* The [`path.join`][path-join] API joins multiple path segments together, creating a
|
|
|
|
combined path string that works across all platforms.
|
2020-12-16 10:02:06 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
We use a path relative to the currently executing JavaScript file so that your relative
|
|
|
|
path will work in both development and packaged mode.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
[Process Model]: ./process-model.md
|
|
|
|
[dirname]: https://nodejs.org/api/modules.html#modules_dirname
|
|
|
|
[path-join]: https://nodejs.org/api/path.html#path_path_join_paths
|
|
|
|
|
|
|
|
### Bonus: Add functionality to your web contents
|
|
|
|
|
|
|
|
At this point, you might be wondering how to add more functionality to your application.
|
|
|
|
|
|
|
|
For any interactions with your web contents, you want to add scripts to your
|
|
|
|
renderer process. Because the renderer runs in a normal web environment, you can add a
|
|
|
|
`<script>` tag right before your `index.html` file's closing `</body>` tag to include
|
|
|
|
any arbitrary scripts you want:
|
|
|
|
|
|
|
|
```html
|
|
|
|
<script src="./renderer.js"></script>
|
|
|
|
```
|
|
|
|
|
|
|
|
The code contained in `renderer.js` can then use the same JavaScript APIs and tooling
|
|
|
|
you use for typical front-end development, such as using [`webpack`][webpack] to bundle
|
|
|
|
and minify your code or [React][react] to manage your user interfaces.
|
|
|
|
|
|
|
|
[webpack]: https://webpack.js.org
|
|
|
|
[react]: https://reactjs.org
|
|
|
|
|
|
|
|
### Recap
|
|
|
|
|
|
|
|
After following the above steps, you should have a fully functional
|
|
|
|
Electron application that looks like this:
|
|
|
|
|
|
|
|
![Simplest Electron app](../images/simplest-electron-app.png)
|
|
|
|
|
|
|
|
<!--TODO(erickzhao): Remove the individual code blocks for static website -->
|
|
|
|
The full code is available below:
|
|
|
|
|
|
|
|
```js
|
|
|
|
// main.js
|
|
|
|
|
|
|
|
// Modules to control application life and create native browser window
|
|
|
|
const { app, BrowserWindow } = require('electron')
|
2023-08-30 15:55:23 +00:00
|
|
|
const path = require('node:path')
|
2021-05-24 02:32:36 +00:00
|
|
|
|
2021-08-02 01:57:37 +00:00
|
|
|
const createWindow = () => {
|
2021-05-24 02:32:36 +00:00
|
|
|
// Create the browser window.
|
|
|
|
const mainWindow = new BrowserWindow({
|
|
|
|
width: 800,
|
|
|
|
height: 600,
|
|
|
|
webPreferences: {
|
|
|
|
preload: path.join(__dirname, 'preload.js')
|
2020-10-13 20:15:40 +00:00
|
|
|
}
|
2021-05-24 02:32:36 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// and load the index.html of the app.
|
|
|
|
mainWindow.loadFile('index.html')
|
|
|
|
|
|
|
|
// Open the DevTools.
|
|
|
|
// mainWindow.webContents.openDevTools()
|
2020-10-13 20:15:40 +00:00
|
|
|
}
|
2021-05-24 02:32:36 +00:00
|
|
|
|
|
|
|
// 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.whenReady().then(() => {
|
|
|
|
createWindow()
|
|
|
|
|
2021-08-02 01:57:37 +00:00
|
|
|
app.on('activate', () => {
|
2021-05-24 02:32:36 +00:00
|
|
|
// 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 (BrowserWindow.getAllWindows().length === 0) createWindow()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
// Quit when all windows are closed, except on macOS. There, it's common
|
|
|
|
// for applications and their menu bar to stay active until the user quits
|
|
|
|
// explicitly with Cmd + Q.
|
2021-08-02 01:57:37 +00:00
|
|
|
app.on('window-all-closed', () => {
|
2021-05-24 02:32:36 +00:00
|
|
|
if (process.platform !== 'darwin') app.quit()
|
|
|
|
})
|
|
|
|
|
|
|
|
// 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.
|
2020-10-13 20:15:40 +00:00
|
|
|
```
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
```js
|
|
|
|
// preload.js
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2022-05-11 14:05:59 +00:00
|
|
|
// All the Node.js APIs are available in the preload process.
|
2021-05-24 02:32:36 +00:00
|
|
|
// It has the same sandbox as a Chrome extension.
|
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
|
|
const replaceText = (selector, text) => {
|
|
|
|
const element = document.getElementById(selector)
|
|
|
|
if (element) element.innerText = text
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const dependency of ['chrome', 'node', 'electron']) {
|
|
|
|
replaceText(`${dependency}-version`, process.versions[dependency])
|
|
|
|
}
|
|
|
|
})
|
2020-10-13 20:15:40 +00:00
|
|
|
```
|
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
```html
|
|
|
|
<!--index.html-->
|
|
|
|
<!DOCTYPE html>
|
2024-02-08 01:27:50 +00:00
|
|
|
<html lang="en">
|
2021-05-24 02:32:36 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
|
|
<title>Hello World!</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Hello World!</h1>
|
|
|
|
We are using Node.js <span id="node-version"></span>,
|
|
|
|
Chromium <span id="chrome-version"></span>,
|
|
|
|
and Electron <span id="electron-version"></span>.
|
|
|
|
|
|
|
|
<!-- You can also require other files to run in this process -->
|
|
|
|
<script src="./renderer.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
```
|
|
|
|
|
2021-05-27 00:45:23 +00:00
|
|
|
```fiddle docs/fiddles/quick-start
|
2021-05-24 02:32:36 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
To summarize all the steps we've done:
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
* We bootstrapped a Node.js application and added Electron as a dependency.
|
|
|
|
* We created a `main.js` script that runs our main process, which controls our app
|
|
|
|
and runs in a Node.js environment. In this script, we used Electron's `app` and
|
|
|
|
`BrowserWindow` modules to create a browser window that displays web content
|
|
|
|
in a separate process (the renderer).
|
|
|
|
* In order to access certain Node.js functionality in the renderer, we attached
|
|
|
|
a preload script to our `BrowserWindow` constructor.
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2021-05-24 02:32:36 +00:00
|
|
|
## Package and distribute your application
|
|
|
|
|
|
|
|
The fastest way to distribute your newly created app is using
|
2020-10-13 20:15:40 +00:00
|
|
|
[Electron Forge](https://www.electronforge.io).
|
|
|
|
|
2023-09-26 23:56:39 +00:00
|
|
|
:::info
|
|
|
|
|
|
|
|
To build an RPM package for Linux, you will need to [install its required system dependencies](https://www.electronforge.io/config/makers/rpm).
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
|
|
|
1. Add a description to your `package.json` file, otherwise rpmbuild will fail. Blank description are not valid.
|
|
|
|
2. Add Electron Forge as a development dependency of your app, and use its `import` command to set up
|
2021-05-24 02:32:36 +00:00
|
|
|
Forge's scaffolding:
|
2020-10-13 20:15:40 +00:00
|
|
|
|
2022-03-03 23:35:51 +00:00
|
|
|
```sh npm2yarn
|
|
|
|
npm install --save-dev @electron-forge/cli
|
|
|
|
npx electron-forge import
|
|
|
|
|
|
|
|
✔ Checking your system
|
|
|
|
✔ Initializing Git Repository
|
|
|
|
✔ Writing modified package.json file
|
|
|
|
✔ Installing dependencies
|
|
|
|
✔ Writing modified package.json file
|
|
|
|
✔ Fixing .gitignore
|
|
|
|
|
|
|
|
We have ATTEMPTED to convert your app to be in a format that electron-forge understands.
|
|
|
|
|
|
|
|
Thanks for using "electron-forge"!!!
|
|
|
|
```
|
|
|
|
|
2023-09-26 23:56:39 +00:00
|
|
|
3. Create a distributable using Forge's `make` command:
|
2022-03-03 23:35:51 +00:00
|
|
|
|
|
|
|
```sh npm2yarn
|
|
|
|
npm run make
|
|
|
|
|
|
|
|
> my-electron-app@1.0.0 make /my-electron-app
|
|
|
|
> electron-forge make
|
|
|
|
|
|
|
|
✔ Checking your system
|
|
|
|
✔ Resolving Forge Config
|
|
|
|
We need to package your application before we can make it
|
|
|
|
✔ Preparing to Package Application for arch: x64
|
|
|
|
✔ Preparing native dependencies
|
|
|
|
✔ Packaging Application
|
|
|
|
Making for the following targets: zip
|
|
|
|
✔ Making for target: zip - On platform: darwin - For arch: x64
|
|
|
|
```
|
|
|
|
|
|
|
|
Electron Forge creates the `out` folder where your package will be located:
|
|
|
|
|
|
|
|
```plain
|
|
|
|
// Example for macOS
|
|
|
|
out/
|
|
|
|
├── out/make/zip/darwin/x64/my-electron-app-darwin-x64-1.0.0.zip
|
|
|
|
├── ...
|
|
|
|
└── out/my-electron-app-darwin-x64/my-electron-app.app/Contents/MacOS/my-electron-app
|
|
|
|
```
|