Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

electron quick start application not working

I'm new to electron and trying to follow different tutorials. Currently I'm following this link to Write my First Electron App

my app is structured like this

your-app/
 ├── package.json
 ├── main.js
 └── index.html

The format of package.json is

 {
  "name"    : "your-app",
  "version" : "0.1.0",
  "main"    : "main.js"
}

this is my main.js

'use strict';

const electron = require('electron');
const app = electron.app;  // Module to control application life.
const BrowserWindow = electron.BrowserWindow;  // Module to create native browser window.

// 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.
var mainWindow = null;

// Quit when all windows are closed.
app.on('window-all-closed', function() {
  // On OS X 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();
  }
});

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
app.on('ready', function() {
  // Create the browser window.
  mainWindow = new BrowserWindow({width: 800, height: 600});

  // and load the index.html of the app.
  mainWindow.loadURL('file://' + __dirname + '/index.html');

  // Open the DevTools.
  mainWindow.webContents.openDevTools();

  // Emitted when the window is closed.
  mainWindow.on('closed', function() {
    // 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.
    mainWindow = null;
  });
});

the index.html is the web page I want to show:

<!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>

Now when I run electron command in my app's source directory, it shows this

this

instead of this result

instead

Every time I've to drag my index.html to the empty space of first image to get the result like second image.

I don't know what I'm doing wrong. Please help me out where am I wrong in this simple application. Any kind of help will be appreciated.

like image 922
Naila Akbar Avatar asked Dec 01 '22 16:12

Naila Akbar


1 Answers

I have to run electron index.html to resolve this issue.

like image 62
Naila Akbar Avatar answered Dec 23 '22 16:12

Naila Akbar