gpt4 book ai didi

javascript - 使用 Electron 配置 Webpack 以使用 ES6 导入?

转载 作者:行者123 更新时间:2023-11-29 17:46:42 25 4
gpt4 key购买 nike

我正在尝试使用 Webpack,因为我想在我的 Electron 应用程序中使用 ES 模块,但有一些障碍。我只想在我的 mainrenderer 进程中使用 import

我的应用结构如下——

- src/                  // contains basic html, css & js
- index.html // <h1>Hello World</h1>
- style.css // is empty
- app.js // console.log('it works 🙈')
- app/ // contains electron code
- main_window.js
- custom_tray.js
- index.js // entry point for electron application
- dist/ // output bundle generated from webpack
- bundle.js

我的 index.js 文件看起来像 -

import path from "path";
import { app } from "electron";

import MainWindow from "./app/main_window";
import CustomTray from "./app/custom_tray";

let win = null,
tray = null;

app.on("ready", () => {
// app.dock.hide();
win = new MainWindow(path.join("file://", __dirname, "/src/index.html"));

win.on("closed", () => {
win = null;
});

tray = new CustomTray(win);
});

我的 main_window.js 文件看起来像 -

import { BrowserWindow } from "electron";

const config = {
width: 250,
height: 350,
show: false,
frame: false,
radii: [500, 500, 500, 500],
resizable: false,
fullscreenable: false
};

class MainWindow extends BrowserWindow {
constructor(url) {
super(config);

this.loadURL(url);
this.on("blur", this.onBlur);
this.show();
}

onBlur = () => {
this.hide();
};
}

export default MainWindow;

我的 custom_tray.js 看起来像 -

import path from "path";
import { app, Tray, Menu } from "electron";

const iconPath = path.join(__dirname, "../src/assets/iconTemplate.png");

class CustomTray extends Tray {
constructor(mainWindow) {
super(iconPath);
this.mainWindow = mainWindow;

this.setToolTip("Thirsty");

this.on("click", this.onClick);
this.on("right-click", this.onRightClick);
}

onClick = (event, bounds) => {
const { x, y } = bounds;
const { width, height } = this.mainWindow.getBounds();

const isMac = process.platform === "darwin";

if (this.mainWindow.isVisible()) {
this.mainWindow.hide();
} else {
this.mainWindow.setBounds({
x: x - width / 2,
y: isMac ? y : y - height,
width,
height
});
this.mainWindow.show();
}
};

onRightClick = () => {
const menuConfig = Menu.buildFromTemplate([
{
label: "Quit",
click: () => app.quit()
}
]);
this.popUpContextMenu(menuConfig);
};
}

export default CustomTray;

我的 webpack.main.config.js 看起来像 -

const path = require("path");

const config = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "bundle.js"
},
module: {
rules: [{ test: /\.js$/, exclude: /node_modules/, use: "babel-loader" }]
},
stats: {
colors: true
},
target: "electron-main",
devtool: "source-map"
};

module.exports = config;

我的 webpack.renderer.config.js 看起来像 -

const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");

const config = {
entry: "./src/app.js",
output: {
path: path.resolve(__dirname, "dist/renderer"),
filename: "app.js"
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: "babel-loader"
},
{
test: /\.css$/,
use: {
loader: "css-loader",
options: {
minimize: true
}
}
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
use: {
loader: "url-loader",
query: {
limit: 10000,
name: "imgs/[name].[ext]"
}
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
use: {
loader: "url-loader",
query: {
limit: 10000,
name: "fonts/[name].[ext]"
}
}
}
]
},
stats: {
colors: true
},
target: "electron-renderer",
devtool: "source-map",
plugins: [
new CopyWebpackPlugin([
{ from: "src/app.css" },
{ from: "src/assets", to: "assets/" }
]),
new HtmlWebpackPlugin({
filename: "index.html",
template: path.resolve(__dirname, "./src/index.html"),
minify: {
collapseWhitespace: true,
removeAttributeQuotes: true,
removeComments: true
}
})
]
};

module.exports = config;

package.json 中我的脚本 看起来像

"scripts": {
"dev:main": "webpack --mode development --config webpack.main.config.js",
"dev:renderer": "webpack --mode development --config webpack.renderer.config.js",
"dev:all": "npm run dev:main && npm run dev:renderer",
"build:main": "webpack --mode production --config webpack.main.config.js",
"build:renderer": "webpack --mode production --config webpack.renderer.config.js",
"build:all": "npm run build:main && npm run build:renderer",
"prestart": "npm run build:all",
"electron": "electron dist/index.js",
"start": "npm run electron",
}

目前我的应用程序创建了一个 dist/bundle.js 但是当我运行 electron dist/bundle.js 它不起作用。我明白了,可能是因为它不包含 src 文件夹,但是当我将 src 文件夹复制到 dist 时它仍然不起作用。

首先,我运行 npm run dev:main 生成 dist/bundle.js 然后我运行 npm run dev:renderer 生成dist/renderer/bundle.js & 然后我运行 npm run start 来启动我的 Electron 应用程序。

它给我错误“Uncaught Exception: Error: Requires constructor call at new MainWindow”,它在 index.js 中,我调用构造函数 new MainWindow()

我只想在我所有的 JS 文件中使用 ES6。是否有任何样板文件,因为我发现的样板文件有大量额外的东西,如 React JS 以及大量优化?

最佳答案

8天后我终于找到了答案。它与 Electron 中的 ESM 一起使用。

我做了一个最小的 repo ,让你用 Electron 编写 ESM。

完整代码可以在https://github.com/deadcoder0904/electron-webpack-sample找到

它非常小,所以应该很容易理解。

关于javascript - 使用 Electron 配置 Webpack 以使用 ES6 导入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48740813/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com