我真的不明白WebPack的觀點,我讀了一個介紹here和一堆其他tutorials,但它似乎我不得不問個別問題......我正在通過創建2個基本文件現場:Webpack捆綁文件 - 它有什麼作用?
app.js:
document.write('welcome to my app');
console.log('app loaded');
的index.html:
<html>
<body>
<script src="bundle.js"></script>
</body>
</html>
然後我跑webpack ./app.js bundle.js
從CLI創建包文件,這恰好。
那麼...現在如何使用軟件包文件?它是什麼?我認爲這基本上是編制了「一切」到一個單一的文件,然後變醜了,但似乎並沒有這樣的情況,一些輸出中的看起來像這樣(編輯成包括全輸出):
/******/ (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] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = 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;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports) {
document.write('welcome to my app');
console.log('app loaded');
/***/ }
/******/ ]);
那麼,有什麼意義?應用程序可以從這個軟件包文件運行嗎?該軟件包是否以某種方式被引用?捆綁包一旦建成,我還需要原始的i ndex.html
和app.js
文件嗎?
顯示您的'webpack.config.js' – haim770
模塊打包程序獲取一個條目文件,確定它的所有依賴關係(即文件加載的其他文件/模塊),並將它們合併成一個文件(「包」)。 –