简体   繁体   中英

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

这

instead of this result

相反

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.

我必须运行electron index.html来解决这个问题。

You must pass the directory where your package.json resides as argument to the electron command. So if you are executing electron from inside your app dir you have to write

electron .

如果在运行 'electron' 命令时没有提供任何参数,请将 main.js 重命名为 index.js(该电子默认运行)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM