如何在 Electron 中集成和 运行 现有的 ReactJS 应用程序
How to integrate and run existing ReactJS Application in Electron
例如,我有一个 ReactJS 应用程序:https://iaya-664f3.firebaseapp.com/
您可以在 HTML 源中看到 bundle.js
文件。
我已经尝试 运行 使用 Electron 将此应用程序作为桌面应用程序,它应该在 chromium window 中启动此 Web 应用程序,但它不起作用。
以下是我的主要 React 应用程序文件 app.js
,位于根目录中。但是编译文件 bundle.js
和 index.html
位于 ./public/
目录中。
./app.js
import React, {Component} from 'react';
import ReactDOM from 'react-dom';
import { Router, Route, browserHistory } from 'react-router';
import routes from './routes';
import {Provider} from "react-redux";
import { createStore, applyMiddleware } from 'redux';
import ReduxPromise from 'redux-promise';
import rootReducer from './reducers/index';
const store = applyMiddleware(ReduxPromise)(createStore)(rootReducer);
ReactDOM.render( <Provider store={store}>
<Router history={browserHistory} routes={routes} />
</Provider> ,
document.getElementById('react-app'));
./index.js
在这个文件中,我将我的应用程序嵌入到 Electron 到 chromium 中 运行。
var app = require("./app");
var BrowserWindow = require("browser-window");
// on electron has started up , booted up, everything loaded (Chromium ,goen, live)
app.on("ready", function(){
var mainWindow = new BrowserWindow({
width:800,
height:600
});
mainWindow.loadUrl("file://" + __dirname+ "/public/index.html");
});
但是这在我的 ./app.js
中的 import React from 'React'
行中给出了一些错误。
所以我假设,我应该只加载 ./public/index.html
文件,其中包含已编译的 bundle.js
。但我想知道,app.on("ready", function(){
行如何工作,期望 app
.
此外,我也尝试过 ./index.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: 800, height: 600});
// and load the index.html of the app.
/*mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'public/index.html'),
protocol: 'file:',
slashes: true
}));*/
mainWindow.loadURL("file://" + __dirname+ "/public/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;
});
}
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();
}
});
基本上事情很简单。 Electron 就像桌面 chromium 包装器一样,在桌面 chromium 中显示您的任何(任何)类型的网页。
例如,我们想要显示 http://www.google.com 然后您只需将此 URL 传递给您的 loadURL()
函数即可。
这是代码的工作副本(在问题中提出):
const electron = require('electron');
// Module to control application life.
const app = electron.app;
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow;
app.on('ready', function(){
var mainWindow = new BrowserWindow({width: 800, height: 600});
mainWindow.loadURL("http://localhost:8080/"); // option1: (loading a local app running on a local server)
//mainWindow.loadURL("https://iaya-664f3.firebaseapp.com"); // option2: (loading external hosted app)
// loading developer tool for debugging
mainWindow.webContents.openDevTools();
});
我希望这会澄清许多 Electron
新手的困惑。所以最后的话是 Electron
只加载现有的和 运行 网络应用程序。它不编译,不充当服务器。它只是一个盒子,你可以在里面放任何东西,让它看起来像桌面。菜单、桌面通知、本地文件系统访问等
例如,我有一个 ReactJS 应用程序:https://iaya-664f3.firebaseapp.com/
您可以在 HTML 源中看到 bundle.js
文件。
我已经尝试 运行 使用 Electron 将此应用程序作为桌面应用程序,它应该在 chromium window 中启动此 Web 应用程序,但它不起作用。
以下是我的主要 React 应用程序文件 app.js
,位于根目录中。但是编译文件 bundle.js
和 index.html
位于 ./public/
目录中。
./app.js
import React, {Component} from 'react';
import ReactDOM from 'react-dom';
import { Router, Route, browserHistory } from 'react-router';
import routes from './routes';
import {Provider} from "react-redux";
import { createStore, applyMiddleware } from 'redux';
import ReduxPromise from 'redux-promise';
import rootReducer from './reducers/index';
const store = applyMiddleware(ReduxPromise)(createStore)(rootReducer);
ReactDOM.render( <Provider store={store}>
<Router history={browserHistory} routes={routes} />
</Provider> ,
document.getElementById('react-app'));
./index.js
在这个文件中,我将我的应用程序嵌入到 Electron 到 chromium 中 运行。
var app = require("./app");
var BrowserWindow = require("browser-window");
// on electron has started up , booted up, everything loaded (Chromium ,goen, live)
app.on("ready", function(){
var mainWindow = new BrowserWindow({
width:800,
height:600
});
mainWindow.loadUrl("file://" + __dirname+ "/public/index.html");
});
但是这在我的 ./app.js
中的 import React from 'React'
行中给出了一些错误。
所以我假设,我应该只加载 ./public/index.html
文件,其中包含已编译的 bundle.js
。但我想知道,app.on("ready", function(){
行如何工作,期望 app
.
此外,我也尝试过 ./index.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: 800, height: 600});
// and load the index.html of the app.
/*mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'public/index.html'),
protocol: 'file:',
slashes: true
}));*/
mainWindow.loadURL("file://" + __dirname+ "/public/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;
});
}
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();
}
});
基本上事情很简单。 Electron 就像桌面 chromium 包装器一样,在桌面 chromium 中显示您的任何(任何)类型的网页。
例如,我们想要显示 http://www.google.com 然后您只需将此 URL 传递给您的 loadURL()
函数即可。
这是代码的工作副本(在问题中提出):
const electron = require('electron');
// Module to control application life.
const app = electron.app;
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow;
app.on('ready', function(){
var mainWindow = new BrowserWindow({width: 800, height: 600});
mainWindow.loadURL("http://localhost:8080/"); // option1: (loading a local app running on a local server)
//mainWindow.loadURL("https://iaya-664f3.firebaseapp.com"); // option2: (loading external hosted app)
// loading developer tool for debugging
mainWindow.webContents.openDevTools();
});
我希望这会澄清许多 Electron
新手的困惑。所以最后的话是 Electron
只加载现有的和 运行 网络应用程序。它不编译,不充当服务器。它只是一个盒子,你可以在里面放任何东西,让它看起来像桌面。菜单、桌面通知、本地文件系统访问等