理解 Webpack:为啥要添加这些 javascript 行?
Posted
技术标签:
【中文标题】理解 Webpack:为啥要添加这些 javascript 行?【英文标题】:Understanding Webpack: why does it add these lines of javascript?理解 Webpack:为什么要添加这些 javascript 行? 【发布时间】:2018-03-15 01:57:17 【问题描述】:我正在学习 Laravel,并试图了解如何使用 Laravel Mix 来捆绑资产(scss 和 javascript)。
正如the documentation 所说:
Laravel Mix 提供了一个流畅的 API 来定义 Webpack 构建步骤 你的 Laravel 应用程序使用了几种常见的 CSS 和 JavaScript 预处理器。
我认为 Webpack 会简单地将所有 javascript 文件连接到一个文件中(并且可以选择缩小它),就像 .scss 文件一样,这些文件被编译成 CSS 和合并到 public/css/app.css。
正如this answer 所说:
Webpack 是一个命令行工具,用于创建资产包(代码和 文件)。 Webpack 不在服务器或浏览器上运行。网页包 获取所有 javascript 文件和任何其他资产并进行转换 然后放到一个大文件中。
如果它实际上只是一个构建工具并且它的任何部分都没有在浏览器上运行,我不明白为什么当我使用npm run dev
构建时它会将此javascript添加到编译文件的顶部(以及它到底做了什么):
/******/ (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,
/******/ configurable: false,
/******/ enumerable: true,
/******/ get: getter
/******/ );
/******/
/******/ ;
/******/
/******/ // 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__)
__webpack_require__(1);
module.exports = __webpack_require__(2);
/***/ ),
/* 1 */
/***/ (function(module, exports)
/***/ ),
/* 2 */
/***/ (function(module, exports)
// removed by extract-text-webpack-plugin
/***/ )
/******/ ]);
如果我运行 npm run prod
,这是 public/app.js 中的输出:
!function(n)function t(e)if(r[e])return r[e].exports;var o=r[e]=i:e,l:!1,exports:;return n[e].call(o.exports,o,o.exports,t),o.l=!0,o.exportsvar r=;t.m=n,t.c=r,t.d=function(n,r,e)t.o(n,r)||Object.defineProperty(n,r,configurable:!1,enumerable:!0,get:e),t.n=function(n)var r=n&&n.__esModule?function()return n.default:function()return n;return t.d(r,"a",r),r,t.o=function(n,t)return Object.prototype.hasOwnProperty.call(n,t),t.p="",t(t.s=0)([function(n,t,r)r(1),n.exports=r(2),function(n,t),function(n,t)]);
这是我的 webpack.mix.js 文件的内容:
let mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel application. By default, we are compiling the Sass
| file for the application as well as bundling up all the JS files.
|
*/
mix.js('resources/assets/js/app.js', 'public/js')
.sass('resources/assets/sass/app.scss', 'public/css');
而且,由于 resources/assets/js/app.js 文件是空的,我也希望(编译的)public/js/app.js 完全为空。
【问题讨论】:
【参考方案1】:如果您有教科书、计算器、午餐盒和三个格兰诺拉麦片棒,WebPack 就是将它们全部放在一个背包中,这样您就可以更轻松地携带它了。那个代码就是背包。即使你没有东西放,它仍然是一个背包。
造成这种情况的部分原因是,如果您将代码放在一个命名空间/范围内,可能会相互干扰。如果范围不正确,将代码放在多个文件中可能会造成意外干扰,而 WebPack 使用其中一些代码来处理所有这些。
是的,它像 SCSS 一样编译和缩小,但 WebPack 还添加了更多需要一些样板代码的功能。
【讨论】:
有没有删除评论的选项?因为一直编译,文件路径都会来,会在git
module.exports = __webpack_require__(/*! /Applications/XAMPP/xamppfiles/htdocs/Projects/WAC/my_ielts_partner/resources/js/admin_panel/user/edit_admin_user.js */"./resources/js/admin_panel/user/edit_admin_user.js");
产生冲突以上是关于理解 Webpack:为啥要添加这些 javascript 行?的主要内容,如果未能解决你的问题,请参考以下文章
任务运行程序(Gulp、Grunt 等)和捆绑程序(Webpack、Browserify)。为啥要一起使用?