Javascript-Webpack-将节点模块放入捆绑包并加载到html文件中

我试图通过WebPack在浏览器中使用node_modules.我已经阅读了教程和开始的步骤,但仍然遇到困难.

我已经使用webpack在下面的webpack配置中生成bundle.js,并且在Chrome浏览器中转到我的index.html时出现错误:

未捕获的ReferenceError:require未定义
    < anonymous>. (bundle.js:205)

要使浏览器重新组合,我还需要执行哪些其他步骤?

index.html

<script src="bundle.js"></script>

<button onclick="EntryPoint.check()">Check</button>

index.js

const SpellChecker = require('spellchecker');

module.exports = {
      check: function() {
            alert(SpellChecker.isMisspelled('keng'));
      }
};

package.json

{
  "name": "browser-spelling",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "dependencies": {
    "node-loader": "^0.6.0",
    "spellchecker": "^3.3.1",
    "webpack": "^2.2.1"
  }
}

webpack.config.js

module.exports = {
    entry: './index.js',
    target: 'node',
    output: {
        path: './',
        filename: 'bundle.js',
        libraryTarget: 'var',
        library: 'EntryPoint'
    },
    module: {
        loaders: [
            {
                test: /\.node$/,
                loader: 'node-loader'
            },
            {
                test: /\.js$/,
                exclude: /node_modules/,
                loader: 'babel-loader',
                query: {
                    presets: ['es2015']
                }
            }
        ]
    }
};

解决方法:

在webpack.config.js中,您指定要为Node.js构建此捆绑包:

target: 'node',

并且webpack决定保留要求呼叫,因为Node.js支持它们.如果要在浏览器中运行它,则应使用target:’web’.

上一篇:(Android)哪个更好的捆绑或应用程序?


下一篇:春季-如何将Liferay Portlet转换为OSGI包?