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

标签 javascript webpack electron webpack-2

我正在尝试使用 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/

相关文章:

javascript - 带有 bootstrap-vue 的静态 html 和 vue

javascript - Angular + Electron基本应用程序不会刷新页面的一部分

javascript - 根据父级移动/调整子级浏览器 View 的大小

javascript - 如何在 Slick carousel 上制作黑色背景过渡?

javascript - 我不明白为什么我必须以特定方式查询 MongoDB 集合(点与括号表示法)

javascript - 将回调从模块 A 传递到 B 并绑定(bind) this,仍然具有 B 的范围。使用 babel

根级别的 Angular 代理

node.js - 运行 Electron 应用程序时出现错误时我能做什么

javascript - 如果未选中单选按钮,jQuery 会删除一个元素

javascript - twitter bootstrap btn-group 来驱动标签内容