在 bundle 中排除 webpack 方法

Exclude webpack methods in bundle

我最近学习了一个教程,该教程教会了我使用 webpack 打包文件的基础知识。使用该教程以及一些在线搜索,我能够创建一个配置文件,将我的库中的不同模块捆绑在一起,并将它们输出到以下结构中:

dist/node/weather.min.js
dist/web/weather.js
dist/web/weather.min.js
dist/web/weather.min.js.map

我能够使用此配置文件执行此操作:

const path = require( 'path' );
const UnminifiedWebpackPlugin = require('unminified-webpack-plugin');
const nodeExternals = require( 'webpack-node-externals' );


// Config to bundle files for Web (browser)
const frontEndConfig = {
    target: 'web',
    entry: {
        app: [ './weather.js' ]
    },
    mode: 'production',
    output: {
        path: path.resolve( __dirname, './dist/web' ),
        filename: 'weather.min.js',
    },
    devServer: {
        host: '0.0.0.0', // Required for docker
        publicPath: '/assets/',
        contentBase: path.resolve( __dirname, './views' ),
        watchContentBase: true,
        compress: true,
        port: 9001
    },
    devtool: 'source-map',
    plugins: [
        new UnminifiedWebpackPlugin()
    ]
}

// Config to bundle files for NodeJS
const backEndConfig = {
    target: 'node',
    entry: {
        app: [ './weather.js' ]
    },
    mode: 'production',
    output: {
        path: path.resolve( __dirname, './dist/node' ),
        filename: 'weather.min.js'
    },
    externals: [ nodeExternals() ]
}

module.exports = [ frontEndConfig, backEndConfig ];

我认为一切都很好,直到我查看我的压缩文件并在文件顶部看到几个 webpack“bootstrap”方法。这些方法有必要吗?我可以捆绑我的文件而不包括这些方法吗?我一直试图在网上找到关于这个的信息,但到目前为止没有运气。我想我要么是在使用错误的关键字进行搜索,要么是我在我的配置中遗漏了一些我没有捕捉到的微不足道的东西。如有任何帮助,我们将不胜感激。

更新: 下面的代码片段是我未缩小文件的开头部分。如您所见,它是一些 webpack bootstrap 函数,然后它做了一些工作以在最后包含我的库。我原以为输出只有我的库,没有任何 webpack 函数。

/******/ (function(modules) { // webpackBootstrap
/******/    // The module cache
/******/    var installedModules = {};
/******/
/******/    // The require function
/******/    function __webpack_require__(moduleId) {
/******/
/******/        // Check if module is in cache
/******/        if(installedModules[moduleId]) {
/******/            return installedModules[moduleId].exports;
/******/        }
/******/        // Create a new module (and put it into the cache)
/******/        var module = installedModules[moduleId] = {
/******/            i: moduleId,
/******/            l: false,
/******/            exports: {}
/******/        };
/******/
/******/        // Execute the module function
/******/        modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/        // Flag the module as loaded
/******/        module.l = true;
/******/
/******/        // Return the exports of the module
/******/        return module.exports;
/******/    }
/******/
/******/
/******/    // expose the modules object (__webpack_modules__)
/******/    __webpack_require__.m = modules;
/******/
/******/    // expose the module cache
/******/    __webpack_require__.c = installedModules;
/******/
/******/    // define getter function for harmony exports
/******/    __webpack_require__.d = function(exports, name, getter) {
/******/        if(!__webpack_require__.o(exports, name)) {
/******/            Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/        }
/******/    };
/******/
/******/    // define __esModule on exports
/******/    __webpack_require__.r = function(exports) {
/******/        if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/            Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/        }
/******/        Object.defineProperty(exports, '__esModule', { value: true });
/******/    };
/******/
/******/    // create a fake namespace object
/******/    // mode & 1: value is a module id, require it
/******/    // mode & 2: merge all properties of value into the ns
/******/    // mode & 4: return value when already ns object
/******/    // mode & 8|1: behave like require
/******/    __webpack_require__.t = function(value, mode) {
/******/        if(mode & 1) value = __webpack_require__(value);
/******/        if(mode & 8) return value;
/******/        if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/        var ns = Object.create(null);
/******/        __webpack_require__.r(ns);
/******/        Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/        if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/        return ns;
/******/    };
/******/
/******/    // getDefaultExport function for compatibility with non-harmony modules
/******/    __webpack_require__.n = function(module) {
/******/        var getter = module && module.__esModule ?
/******/            function getDefault() { return module['default']; } :
/******/            function getModuleExports() { return module; };
/******/        __webpack_require__.d(getter, 'a', getter);
/******/        return getter;
/******/    };
/******/
/******/    // Object.prototype.hasOwnProperty.call
/******/    __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/    // __webpack_public_path__
/******/    __webpack_require__.p = "";
/******/
/******/
/******/    // Load entry module and return exports
/******/    return __webpack_require__(__webpack_require__.s = 0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports, __webpack_require__) {

module.exports = __webpack_require__(1);


/***/ }),
/* 1 */
/***/ (function(module, __webpack_exports__, __webpack_require__) {

"use strict";
// ESM COMPAT FLAG
__webpack_require__.r(__webpack_exports__);

// EXPORTS
__webpack_require__.d(__webpack_exports__, "helpers", function() { return /* binding */ helpers; });
__webpack_require__.d(__webpack_exports__, "OWMClient", function() { return /* binding */ OWMClient; });

// NAMESPACE OBJECT: ./src/helpers/helpers.js
var helpers_namespaceObject = {};
__webpack_require__.r(helpers_namespaceObject);
__webpack_require__.d(helpers_namespaceObject, "celsiusToKelvin", function() { return celsiusToKelvin; });
__webpack_require__.d(helpers_namespaceObject, "celsiusToFahrenheit", function() { return celsiusToFahrenheit; });
__webpack_require__.d(helpers_namespaceObject, "fahrenheitToCelsius", function() { return fahrenheitToCelsius; });
__webpack_require__.d(helpers_namespaceObject, "fahrenheitToKelvin", function() { return fahrenheitToKelvin; });
__webpack_require__.d(helpers_namespaceObject, "kelvinToCelsius", function() { return kelvinToCelsius; });
__webpack_require__.d(helpers_namespaceObject, "kelvinToFahrenheit", function() { return kelvinToFahrenheit; });
__webpack_require__.d(helpers_namespaceObject, "isEmpty", function() { return isEmpty; });

你从未缩小的文件中观察到的正是 WebPack 打包时发生的情况:首先它将各个模块收集到一个模块数组中,然后在最开始包括如何使用该数组的说明。

从 [1] 中,您可以看到 WebPack 对三个模块(求和、乘法和索引)的非常简单的乘法应用程序做了什么:

// the webpack bootstrap
(function (modules) {
    // The module cache
    var installedModules = {};
    // The require function
    function __webpack_require__(moduleId) {
        // Check if module is in cache
        // Create a new module (and put it into the cache)
        // Execute the module function
        // Flag the module as loaded
        // Return the exports of the module
    }


    // expose the modules object (__webpack_modules__)
    // expose the module cache
    // Load entry module and return exports
    return __webpack_require__(0);
})
/************************************************************************/
([
    // index.js - our application logic
    /* 0 */
    function (module, exports, __webpack_require__) {
        var multiply = __webpack_require__(1);
        var sum = __webpack_require__(2);
        var totalMultiply = multiply(5, 3);
        var totalSum = sum(5, 3);
        console.log('Product of 5 and 3 = ' + totalMultiply);
        console.log('Sum of 5 and 3 = ' + totalSum);
    },
    // multiply.js
    /* 1 */
    function (module, exports, __webpack_require__) {
        var sum = __webpack_require__(2);
        var multiply = function (a, b) {
            var total = 0;
            for (var i = 0; i < b; i++) {
                total = sum(a, total);
            }
            return total;
        };
        module.exports = multiply;
    },
    // sum.js
    /* 2 */
    function (module, exports) {
        var sum = function (a, b) {
            return a + b;
        };
        module.exports = sum;
    }
]);

如您所见,分隔线之后的几行包含阵列特定格式的模块,前几行是有效使用该阵列的电机。否则整个 bundle 只是一大段代码,没有开始也没有结束,没有规则从哪里开始以及下一步去哪里。

除其他外,模块的想法是不重复代码 - 它说要重用它。也就是说,require 或 import 方法用于在需要时处理依赖关系。您观察到的额外代码在某种程度上是导入或要​​求功能的替代品 - 采用通用方式。

请查看我的来源(致谢 Sean Landsman)并阅读整个故事以完美理解主题:

[1] https://medium.com/ag-grid/webpack-tutorial-understanding-how-it-works-f73dfa164f01