问题描述
我正在尝试使用 React 创建一个 Electron 应用程序.我使用 Webpack 来编译 React JSX 语法,但是当我尝试使用 webpack
命令编译时,我得到了这个错误:
I am trying to create an Electron application with React. I use Webpack to compile the React JSX syntax, but when I try to compile with webpack
command, I got this error:
./app.jsx 中的错误未找到模块:错误:无法解析/Users/masterT/Downloads/gist 中的模块电子"
@./app.jsx 6:18-37
@ ./app.jsx 6:18-37
这是应用程序代码.
我做错了什么?
谢谢!
推荐答案
Webpack 尝试使用已安装的 node_modules 解析 electron
模块.但是 electron
模块在运行时在 Electron 本身中解析.因此,您必须像这样从 webpack 捆绑中排除特定模块:
Webpack tries to resolve electron
module with the installed node_modules. But the electron
module is resolved in Electron itself at runtime. So, you have to exclude particular module from webpack bundling like this:
webpack.config.js:
webpack.config.js:
module.exports = {
entry: './app.jsx',
output: {
path: './built',
filename: 'app.js'
},
target: 'atom',
module: {
loaders: [
{
loader: 'babel',
test: /.jsx$/,
query: {
presets: ['es2015', 'react']
}
}
]
},
externals: [
(function () {
var IGNORES = [
'electron'
];
return function (context, request, callback) {
if (IGNORES.indexOf(request) >= 0) {
return callback(null, "require('" + request + "')");
}
return callback();
};
})()
]
};
这篇关于使用 webpack 为 Electron 应用程序捆绑错误`无法解析模块'电子'`的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!