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

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' index.js,about.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:["index"] }) ] })

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自己.

webpack多页面配置优化

我们再看下src下面的文件结构

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

src下面每个文件夹对应一个html页面的js业务,如果我们直接把文件夹对应入口js找到并把他们合并生成对应的entry,那是不是就不用手动写entry了呢,是的!

遍历文件目录

/* eslint-env node */ /** * @file: getFilePath.js 遍历文件目录 * @author: leinov * @date: 2018-10-11 */ const fs = require("fs"); /** * 【遍历某文件下的文件目录】 * * @param {String} path 路径 * @returns {Array} ["about","index"] */ module.exports = function getFilePath(path){ let fileArr = []; let existpath = fs.existsSync(path); //是否存在目录 if(existpath){ let readdirSync = fs.readdirSync(path); //获取目录下所有文件 readdirSync.map((item)=>{ let currentPath = path + "https://www.jb51.net/" + item; let isDirector = fs.statSync(currentPath).isDirectory(); //判断是不是一个文件夹 if(isDirector && item !== "component"){ // component目录下为组件 需要排除 fileArr.push(item); } }); return fileArr; } };

比如在src下有index页面项目,about项目 遍历结果为["index","about"];

遍历生成打包入口数组

/* eslint-env node */ /** * @file: getEntry.js 获取entry文件入口 * @author: leinov * @date: 2018-10-11 * @update: 2018-11-04 优化入口方法 调用getFilePath */ const getFilePath = require("./getFilepath"); /** * 【获取entry文件入口】 * * @param {String} path 引入根路径 * @returns {Object} 返回的entry { "about/aoubt":"./src/about/about.js",...} */ module.exports = function getEnty(path){ let entry = {}; getFilePath(path).map((item)=>{ /** * 下面输出格式为{"about/about":"./src/aobout/index.js"} * 这样目的是为了将js打包到对应的文件夹下 */ entry[`${item}/${item}`] = `${path}/${item}/index.js`; }); return entry; };

这里我们使用getFilepath获取的数组,在获取到每个目录下的js文件,组合成一个js入口文件的如下格式的对象。

{ "index/index":"./src/index/index.js", "about/about":"./src/about/index.js" }

在webpack中使用getEntry

const getEntry = require("./webpackConfig/getEntry"); const entry = getEntry(); module.exports = (env, argv) => ({ entry: entry, })

这样我们就自动获取到了entry

html-webpack-plugin自动配置

因为每个页面都需要配置一个html,而且每个页面的标题,关键字,描述等信息可能不同,所以我们在每个页面文件夹下创建一个pageinfo.json,通过fs模块获取到json里信息再遍历到对应得html-webpack-plugin中生成一个html插件数组。

index/pageinfo.json 生成index.html页面信息

{ "title":"首页", "keywords":"webpack多页面" }

about/pageinfo.json 生成about.html页面信息供

{ "title":"关于页面", "keywords":"webpack多页面关于页面" }

通过fs遍历读取并生成HtmlWebpackPlugin数组供webpack使用

遍历html插件数组

/** * @file htmlconfig.js 页面html配置 * @author:leinov * @date: 2018-10-09 * @update: 2018-11-05 * @use: 动态配置html页面,获取src下每个文件下的pageinfo.json内容,解析到HtmlWebpackPlugin中 */ const fs = require("fs"); const HtmlWebpackPlugin = require("html-webpack-plugin");//生成html文件 const getFilePath = require("./getFilepath"); let htmlArr = []; getFilePath("./src").map((item)=>{ let infoJson ={},infoData={}; try{ // 读取pageinfo.json文件内容,如果在页面目录下没有找到pageinfo.json 捕获异常 infoJson = fs.readFileSync(`src/${item}/pageinfo.json`,"utf-8");// infoData = JSON.parse(infoJson); }catch(err){ infoData = {}; } htmlArr.push(new HtmlWebpackPlugin({ title:infoData.title ? infoData.title : "webpack,react多页面架构", meta:{ keywords: infoData.keywords ? infoData.keywords : "webpack,react,github", description:infoData.description ? infoData.description : "这是一个webpack,react多页面架构" }, chunks:[`${item}/${item}`], //引入的js template: "./src/template.html", filename : item == "index" ? "index.html" : `${item}/index.html`, //html位置 minify:{//压缩html collapseWhitespace: true, preserveLineBreaks: true }, })); }); module.exports = htmlArr;

wbpack终极配置

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

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