Приложение Ionic and Electron не запускается.Ошибка запуска приложения, не удается найти модуль в {Project Directory} - PullRequest
0 голосов
/ 07 декабря 2018

Я пытался преобразовать ионное приложение в настольное приложение, но, похоже, не могу найти решение.Всякий раз, когда я запускаю electron ., я получаю всплывающее окно с надписью Error launching app

Я добавляю свой основной скрипт в свой package.json и добавляю собственную команду сборки, которая собирает мое приложениеи запускает электрон потом.Мой package.json выглядит следующим образом

{
"name": "businessapp-desktop",
"version": "0.0.1",
"author": "Ionic Framework",
"homepage": "http://ionicframework.com/",
"private": true,
"scripts": {
  "start": "ionic-app-scripts serve",
  "clean": "ionic-app-scripts clean",
  "build": "ionic-app-scripts build",
  "lint": "ionic-app-scripts lint",
  "electon-serve": "ionic-app-scripts build && electron ."
},
"main":"electron/electron.js",
"dependencies": {
  "@angular/animations": "5.2.11",
  "@angular/common": "5.2.11",
  "@angular/compiler": "5.2.11",
  "@angular/compiler-cli": "5.2.11",
  "@angular/core": "5.2.11",
  "@angular/forms": "5.2.11",
  "@angular/http": "5.2.11",
  "@angular/platform-browser": "5.2.11",
  "@angular/platform-browser-dynamic": "5.2.11",
  "@ionic-native/core": "~4.17.0",
  "@ionic-native/splash-screen": "~4.17.0",
  "@ionic-native/status-bar": "~4.17.0",
  "@ionic/pro": "2.0.3",
  "@ionic/storage": "2.2.0",
  "ionic-angular": "3.9.2",
  "ionicons": "3.0.0",
  "rxjs": "5.5.11",
  "sw-toolbox": "3.6.0",
  "zone.js": "0.8.26"
},
"devDependencies": {
  "@ionic/app-scripts": "3.2.1",
  "electron": "^3.0.10",
  "typescript": "~2.6.2"
},
"description": "An Ionic project"
}

А мой electron.js выглядит следующим образом

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

const path = require('path');
const url = require('url');

// 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 mainWindow;

function createWindow() {
    // Create the browser window.
    mainWindow = new BrowserWindow({width: 1200, height: 700});

    // and load the index.html of the app.
    const startUrl = process.env.ELECTRON_START_URL || url.format({
            pathname: path.join(__dirname, '/../www/index.html'),
            protocol: 'file:',
             slashes: true
        });
    mainWindow.loadURL(startUrl);
    // 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
})
}

// 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', 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()
}
});

app.on('activate', function () {
// On OS X 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 (mainWindow === 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.

Я установил электронные зависимости с npm i --save-dev electron Но всякий раз, когда я пытаюсь запустить electron . как указано в руководстве здесь я получаю ошибку выше.

Буду признателен за любую предоставленную помощь.

1 Ответ

0 голосов
/ 08 декабря 2018

Наконец исправили.Проблема была типографской.Мое приложение не может получить доступ к main.js, потому что путь к файлу был неверным.Если у вас возникла подобная проблема, проверьте путь к файлу.

...