[note] Webpack 常用 modules
babel
- babel-core: babel 核心程式,知道如何載入程式碼、解析和輸出檔案(但不包含編譯)。
- babel-loader: 用來告訴 babel 如何和 webpack 合作。
- babel-preset-es2015: 讓 babel 知道如何將不同版本的 ES 語法進行轉譯。
- babel-plugin-transform-runtime: 預設 babel 會在每一隻編譯檔案注入 polyfill 的程式碼,為了避免重複而將這部分抽出去,詳細說明。
css
- css-loader: 告訴 webpack 如何匯入和解析 css 檔案。
- style-loader: 將匯入的 css 內容注入 HTML 的 中
圖片處理
- file-loader: webpack 使用於處理檔案
- image-webpack-loader
- url-loader: 編譯匯入檔案類型的資源,把檔案轉成 base64
dev-server
vue
- vue-loader: 使用 Vue Component Spec
- vue-hot-reload-api: 支援 hot reload