浅谈webpack+react多页面开发终极架构

webpack在单页面打包上应用广泛,以create-react-app为首的脚手架众多,单页面打包通常指的是将业务js,css打包到同一个html文件中,整个项目只有一个html文件入口,但也有许多业务需要多个页面不同的入口,比如不同的h5活动,或者需要支持seo的官方网站,都需要多个不同的html。webpack-react-multi-page架构让你可以在多页面在项目开发中自动化打包新创建页面并保证每个页面都可以热更新 ,build打包后有清晰的文件层次结构。

概览

key value
名称   webpack+react多页面架构  
描述   简单易用的多页面自动化开发架构  
开发者   leinov  
发布日期   2018-11-07  
版本   2.0  
仓库   github地址  

特性

支持多页面同时热加载开发

自动识别新创建页面

每个页面生成个性化信息

分类打包

灵活扩展

安装&使用

// clone git clone git@github.com:leinov/webpack-react-multi-page.git // 安装依赖包 npm install // 开发 npm run dev // 编译打包 npm run build // 启动生产页面 npm start

新创建页面在src下添加文件夹并创建pageinfo.json 然后npm run dev 即可

|-- src |-- index/ |-- page2/ |-- index.js |-- pageinfo.json

项目架构

技术使用

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

fs

git

目录结构

|-- webpack-react-multi-pages //项目 |-- dist //编译生产目录 |-- index |-- index.css |-- index.js |-- about |-- about.css |-- about.js |-- images |-- index.html |-- about.html |-- node_modules //node包 |-- src //开发目录 |-- index //index页面打包入口 |-- images/ |-- js |-- app.js// 业务js |-- index.sass |-- index.js //页面js入口 |-- about //about页面打包入口 |-- images/ |--js |-- app.js// 业务js |-- about.sass |-- about.js //页面js入口 |-- template.html // html模板 |-- style.sass //公共sass |-- webpackConfig //在webpack中使用 |-- getEntry.js //获取入口 |-- getFilepath.js //src下需要打包页面文件夹 |-- htmlconfig.js //每个页面html注入数据 |-- package.json |-- .gitignore |-- webpack.config.js //webpack配置文件 |-- //生产启动程序

wiki

webpack打包单页面应用

webpack在单页面打包上应用广泛,以create-react-app为首的接触脚手架众多,单页面打包通常指的是将业务js,css打包到同一个html文件中,整个项目只有一个html文件入口

webpack单页面打包配置

webpack.config.js

module.exports = (env, argv) => ({ entry: ".src/index.js", output: { path: path.join(__dirname, "dist"), filename: "https://www.jb51.net/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></div> <script type="text/javascript" src="https://www.jb51.net/bundle.js"></script></body> </html>

webpack多页面打包配置

webpack 的entry支持两种种格式

打包单个文件

module.exports = { entry: '.src/file.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'https://www.jb51.net/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' index.js,about.js这两个文件 } };

上面在dist下打包出两个与entry属性名对应的js文件

将每个js挂载到相应的html文件上

这里我们需要用到html-webpack-plugin这个webpack插件,每添加一个页面就需要在plugins添加一个new HtmlWebpackPlugin({....})

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/ba1672ef73254d45c2b24bbe6699e366.html