My Blog

My WordPress Blog

My Blog

My WordPress Blog

Hello World

We have created a package.json file for our project. Now we will create our first desktop app using Electron.

Create a new file called main.js. Enter the following code in it −

const {app, BrowserWindow} = require('electron') 
const url = require('url') 
const path = require('path')  

let win  

function createWindow() { 
   win = new BrowserWindow({width: 800, height: 600}) 
   win.loadURL(url.format ({ 
  pathname: path.join(__dirname, 'index.html'), 
  protocol: 'file:', 
  slashes: true 
})) } app.on('ready', createWindow)

Create another file, this time an HTML file called index.html. Enter the following code in it.

<!DOCTYPE html>
<html>
   <head>
  &lt;meta charset = "UTF-8"&gt;
  &lt;title&gt;Hello World!&lt;/title&gt;
</head> <body>
  &lt;h1&gt;Hello World!&lt;/h1&gt;
  We are using node &lt;script&gt;document.write(process.versions.node)&lt;/script&gt;,
  Chrome &lt;script&gt;document.write(process.versions.chrome)&lt;/script&gt;,
  and Electron &lt;script&gt;document.write(process.versions.electron)&lt;/script&gt;.
</body> </html>

Run this app using the following command −

$ electron ./main.js

A new window will open up. It will look like the following −

Electron Hello World

How Does This App Work?

We created a main file and an HTML file. The main file uses two modules – app and BrowserWindow. The app module is used to control your application’s event lifecycle while the BrowserWindow module is used to create and control browser windows.

We defined a createWindow function, where we are creating a new BrowserWindow and attaching a URL to this BrowserWindow. This is the HTML file that is rendered and shown to us when we run the app.

We have used a native Electron object process in our html file. This object is extended from the Node.js process object and includes all of t=its functionalities while adding many more.

Hello World

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to top