Webpack - 将节点模块放入Bundle并加载到html文件中

时间:2017-02-18 15:55:25

标签: javascript node.js webpack bundle

我试图通过WebPack在浏览器中使用node_modules。我已经阅读了教程和开始步骤,但我被卡住了。

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

Uncaught ReferenceError: require is not defined at Object.<anonymous> (bundle.js:205)

我需要执行哪些其他步骤才能让浏览器进行recongnize require?

的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']
                }
            }
        ]
    }
};

1 个答案:

答案 0 :(得分:3)

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

target: 'node',

webpack决定保留require次调用,因为Node.js支持它们。如果您想在浏览器中运行它,则应使用target: 'web'代替。