中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

webpack4+react多頁面架構的實現

發布時間:2020-10-14 11:40:52 來源:腳本之家 閱讀:143 作者:秋雨 欄目:web開發

webpack在單頁面打包上應用廣泛,以create-react-app為首的腳手架眾多,單頁面打包通常是將業務js,css打包到同一個html文件中,整個項目只有一個html文件入口,但也有許多業務需要多個頁面不同的入口,比如不同的h6活動,或者需要支持seo的官方網站,都需要多個不同的html,webpack-react-multi-page架構讓你可以實現多頁面架構,在項目開發中保證每個頁面都可以熱更新并且打包后有清晰的文件層次結構。

Github地址

項目架構

技術使用

  • react16
  • webpack4
    • html-webpack-plugin 生成html文件
    • mini-css-extract-plugin css分離打包
    • uglifyjs-webpack-plugin js壓縮
    • optimize-css-assets-webpack-plugin css壓縮
  • es6
  • babel
  • node
    • opn 打開瀏覽器
    • compression 開啟gzip壓縮
    • express
  • git

目錄結構github

|-- webpack-react-multi-page //項目
  |-- dist //編譯生產目錄
    |-- index
      |-- index.css
      |-- index.js
    |-- about
      |-- about.css
      |-- about.js
    |-- images
    |-- index.html
    |-- about.html
  |-- node_modules //node包
  |-- src //開發目錄
    |-- index //index頁面打包入口
      |-- images/
      |-- app.js// index業務js
      |-- index.scss
      |-- index.js //index頁面js入口
    |-- about //about頁面打包入口
      |-- images/
      |-- app.js// about業務js
      |-- index.scss
      |-- index.js //about頁面js入口
    |-- template.html // html模板 
    |-- style.scss //公共scss
  |-- webpackConfig //在webpack中使用
    |-- getEntry.js //獲取入口
    |-- getFilepath.js //遍歷文件夾
    |-- htmlconfig.js //每個頁面html注入數據
  |-- package.json
  |-- .gitignore
  |-- webpack.config.js //webpack配置文件
  |-- www.js //生產啟動程序

wiki

webpack單頁面打包配置

webpack.config.js

module.exports = (env, argv) => ({
  entry: ".src/index.js",
  output: {
    path: path.join(__dirname, "dist"),
    filename: "bundle.js"
  },
  module: {
    rules: [
      ...
    ],
  },
  plugins: [
    new HtmlWebpackPlugin({
      title: "首頁",
      filename:"index.html",
      favicon:"", 
      template: "./src/template.html", 
    })
  ]
});

這樣就可以在dist文件夾下打包出一個下面這樣的文件

<!DOCTYPE html>
<html lang="en">
  <head>
  <title>首頁</title>
  <body>
    <div id="root"></div>
    <script type="text/javascript" src="bundle.js"></script>
  </body>
</html>

webpack多頁面打包配置

webpack 的entry支持兩種種格式

打包單個文件

module.exports = {
  entry: '.src/file.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'bundle.js' 
 }
};

在dist下打包出一個bundle.js

打包出多個文件

module.exports = {
  entry: {
    index:"./src/index.js",
    about:"./src/about.js"
  },
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: '[name].js' 
  }
};

上面在dist下打包出兩個與entry屬性名對應的index.js,about.js這兩個文件

將每個js掛載到相應的html文件上

這里我們需要用到html-webpack-plugin這個webpack插件,每添加一個頁面就需要在plugins添加一個new HtmlWebpackPlugin({....})

const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = (env, argv) => ({
  entry: {
    index:"./src/index.js",
    about:"./src/about.js"
  },
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: '[name].js' 
  }
  ....//其他配置
  plugins: [
    new HtmlWebpackPlugin(
      {
      filename:"index.html",//生成的index.html
      template: "./src/template.html",}) //模板
      chunks:["index"]
      }),
  new HtmlWebpackPlugin(
      {
        filename:"about.html",//生成的index.html
      template: "./src/template.html",}) //模板
      chunks:["about"]
      })
  ]
})

html-webpack-plugin會通過template.html模板生成對應的filename名的html文件,并一并打包到output中對應的文件夾下,注意,所有打包的文件都是對應到output中path這個目錄下,也包括html。這里的chunks需要注意,它是確定該html需要引入哪個js,如果沒寫的話,默認會引出所有打包的js,當然這不是我們想要的。
上面的配置最終可以在dist下打包出下面的文件結構

|-- dist
  |-- index.js
  |-- about.js
  |-- index.html //內掛載index.js
  |-- about.html //內掛載about.js

通過上面這樣的配置,再加上devServer,我們已經可以實現多頁面的配置開發了,但這樣很不智能,因為你每增加一個頁面,就要在wepback里面配置一次,會非常繁瑣,所以我們來優化下,讓我們只專注于開發頁面,配置交給webpack.

wehbpack多頁面配置優化

我們看下src下面的文件結構

|-- src
  |-- index
    |-- app.js
    |-- index.scss
    |-- index.js
  |-- about
    |-- app.js
    |-- index.scss
    |-- index.js

src下面每個文件夾對應一個html頁面的js業務,如果我們直接把文件夾對應入口js找到并把他們合并生成對應的entry,那是不是就不用手動寫entry了呢,再把對應的html-webpack-plugin通過src下目錄遍歷出來,就可以生成對應的頁面。

這樣一個完整的多頁面架構配置就完成了,完整代碼參考項目code

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

布尔津县| 长泰县| 民和| 加查县| 秦安县| 都兰县| 九寨沟县| 泾川县| 北京市| 宁南县| 黄大仙区| 石首市| 买车| 天长市| 潼南县| 甘孜| 永安市| 仲巴县| 肃宁县| 大港区| 广丰县| 兴山县| 广德县| 仙桃市| 监利县| 渝北区| 潮安县| 兴化市| 北京市| 高雄市| 伊宁县| 马龙县| 新蔡县| 梨树县| 简阳市| 盐亭县| 海林市| 德令哈市| 东阳市| 西充县| 通河县|