webpack4 + react 搭建多页面应用示例

webpack 升级到4之后还没好好的同步一个可实用的webpack架子,接下来用webpack4来搭建一个简单的react的多界面应用,废话不说 直接撸码

创建工程

webpack 配置

安装react + babel 依赖

$ npm i -D webpack@4.4.1 webpack-cli@2.0.13 webpack-dev-server@3.1.1 webpack-merge@4.1.2 babel-cli@6.26.0 babel-preset-env@1.6.1 babel-preset-react@6.24.1 babel-preset-react-hmre@1.1.1 babel-loader@7.1.4 file-loader@1.1.11 url-loader@1.0.1

webpack.base.conf.js(config -> webpack)

webpack.dev.conf.js

let config = merge(baseWebpackConfig,{
/设置开发环境/
mode: 'development',output: {
path: path.resolve(webpackFile.devDirectory),filename: 'js/[name].js',chunkFilename: "js/[name].js",publicPath: ''
},optimization: {
runtimeChunk: {
name: 'manifest'
},// 包拆分
splitChunks: {
cacheGroups: {
common: { // 项目的公共组件
chunks: "initial",name: "common",minChunks: 2,maxInitialRequests: 5,minSize: 0
},vendor: { // 第三方组件
test: /node_modules/,chunks: "initial",name: "vendor",priority: 10,enforce: true
}
}
}
},plugins: [
/设置热更新/
new webpack.HotModuleReplacementPlugin(),],module: {
rules: [
{
test: /.(js|jsx)$/,use: [
'babel-loader','cache-loader',include: [
path.resolve(dirname,"../../app"),path.resolve(dirname,"../../entryBuild")
],exclude: [
path.resolve(__dirname,"../../node_modules")
],},{
test: /.(css|pcss)$/,loader: 'style-loader?sourceMap!css-loader?sourceMap!postcss-loader?sourceMap',exclude: /node_modules/
},{
test: /.(png|jpg|gif|ttf|eot|woff|woff2|svg|swf)$/,loader: 'file-loader?name=[name].[ext]&outputPath=' + webpackFile.resource + '/'
},{
test: /.(js|jsx)$/,enforce: 'pre',use: [
{
options: {
formatter: eslintFormatter,eslintPath: require.resolve('eslint'),// @remove-on-eject-begin
baseConfig: {
extends: [require.resolve('eslint-config-react-app')],//ignore: false,useEslintrc: false,// @remove-on-eject-end
},loader: require.resolve('eslint-loader'),"../../app")
],}
]
},/设置api转发/
devServer: {
host: '0.0.0.0',port: 8080,hot: true,inline: true,contentBase: path.resolve(webpackFile.devDirectory),historyApiFallback: true,disableHostCheck: true,proxy: [
{
context: ['/api/','/u/'],target: 'http://10.8.200.69:8080/',secure: false
}
],/打开浏览器 并打开本项目网址/
after() {
opn('http://localhost:' + this.port);
}
}
});
module.exports = config;

webpack.prod.conf.js

let config = merge(baseWebpackConfig,{
/设置生产环境/
mode: 'production',output: {
path: path.resolve(webpackFile.proDirectory),filename: 'js/[name].[chunkhash:8].js',chunkFilename: "js/[name]-[id].[chunkhash:8].js",optimization: {
//包清单
runtimeChunk: {
name: "manifest"
},//拆分公共包
splitChunks: {
cacheGroups: {
common: { //项目公共组件
chunks: "initial",vendor: { //第三方组件
test: /node_modules/,plugins: [
// extract css into its own file
new ExtractTextPlugin('css/[name].[md5:contenthash:hex:8].css'),// Compress extracted CSS. We are using this plugin so that possible
// duplicated CSS from different components can be deduped.
new OptimizeCSSPlugin({
assetNameRegExp: /.css$/g,cssProcessor: require('cssnano'),cssProcessorOptions: {
discardComments: {removeAll: true},// 避免 cssnano 重新计算 z-index
safe: true
},canPrint: true
}),loader: 'babel-loader',exclude: /node_modules/,use: ExtractTextPlugin.extract({
fallback: "style-loader",use: "css-loader!postcss-loader"
})
},{
test: /.(png|jpg|gif|ttf|eot|woff|woff2|svg)$/,loader: 'url-loader?limit=8192&name=[name].[hash:8].[ext]&publicPath=' + webpackFile.resourcePrefix + '&outputPath=' + webpackFile.resource + '/'
},{
test: /.swf$/,loader: 'file?name=js/[name].[ext]'
}
]
}
});
let pages = entry;
for (let chunkName in pages) {
let conf = {
filename: chunkName + '.html',template: 'index.html',inject: true,title: webpackCom.titleFun(chunkName,pages[chunkName][1]),minify: {
removeComments: true,collapseWhitespace: true,removeAttributeQuotes: true
},chunks: ['manifest','vendor','common',chunkName],hash: false,chunksSortMode: 'dependency'
};
config.plugins.push(new HtmlWebpackPlugin(conf));
}
/ 清除 dist /
config.plugins.push(new CleanWebpackPlugin([webpackFile.proDirectory],{root: path.resolve(__dirname,'../../'),verbose: true,dry: false}));

/ 拷贝静态资源 /
copyArr.map(function (data) {
return config.plugins.push(data)
});

module.exports = config;

构建多界面

整体架构搭建起来之后

app -> component

); } } export default Index;

在config -> entry

然后直接执行 npm run create-dev 就会在devBuild 和 entryBuild 中添加一个新的demo.html 和 demo.js

{
"name": "webpack_es6","version": "1.0.0","description": "","main": "index.js","scripts": {
"dev": "webpack-dev-server --devtool eval --progress --colors --profile --config config/webpack/webpack.dev.conf.js","entry": "node config/entry/entryBuild.js","devBuildHtml": "node config/webpack/webpack.devBuildHtml.conf.js","create-dev": "npm run entry && npm run devBuildHtml","build": "BABEL_ENV=production && webpack --progress --colors --config config/webpack/webpack.prod.conf.js","test": "echo \"Error: no test specified\" && exit 1"
},"keywords": [],"author": "","license": "ISC","dependencies": {
"react": "^16.3.0","react-dom": "^16.3.0"
},"devDependencies": {
"babel-cli": "^6.26.0","babel-eslint": "^8.2.2","babel-loader": "^7.1.4","babel-preset-env": "^1.6.1","babel-preset-react": "^6.24.1","babel-preset-react-hmre": "^1.1.1","cache-loader": "^1.2.2","clean-webpack-plugin": "^0.1.19","copy-webpack-plugin": "^4.5.1","css-loader": "^0.28.11","eslint": "^4.19.1","eslint-config-react-app": "^2.1.0","eslint-loader": "^2.0.0","eslint-plugin-flowtype": "^2.46.1","eslint-plugin-import": "^2.10.0","eslint-plugin-jsx-a11y": "^5.1.1","eslint-plugin-react": "^7.7.0","extract-text-webpack-plugin": "^4.0.0-beta.0","file": "^0.2.2","file-loader": "^1.1.11","html-webpack-plugin": "^3.1.0","optimize-css-assets-webpack-plugin": "^4.0.0","postcss-cssnext": "^3.1.0","postcss-loader": "^2.1.3","precss": "^3.1.2","react-dev-utils": "^5.0.0","style-loader": "^0.20.3","url-loader": "^1.0.1","webpack": "^4.4.1","webpack-cli": "^2.0.13","webpack-dev-server": "^3.1.1","webpack-merge": "^4.1.2"
},"eslintConfig": {
"extends": "react-app","rules": {
"import/no-webpack-loader-syntax": 0,"no-script-url": 0,"jsx-a11y/href-no-hash": 2
}
}
}

开发环境小技巧

在开发环境添加cache-loader 可以提升在开发环境的编译速度

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


kindeditor4.x代码高亮功能默认使用的是prettify插件,prettify是Google提供的一款源代码语法高亮着色器,它提供一种简单的形式来着色HTML页面上的程序代码,实现方式如下: 首先在编辑器里面插入javascript代码: 确定后会在编辑器插入这样的代码: <pre
这一篇我将介绍如何让kindeditor4.x整合SyntaxHighlighter代码高亮,因为SyntaxHighlighter的应用非常广泛,所以将kindeditor默认的prettify替换为SyntaxHighlighter代码高亮插件 上一篇“让kindeditor显示高亮代码”中已经
js如何实现弹出form提交表单?(图文+视频)
js怎么获取复选框选中的值
js如何实现倒计时跳转页面
如何用js控制图片放大缩小
JS怎么获取当前时间戳
JS如何判断对象是否为数组
JS怎么获取图片当前宽高
JS对象如何转为json格式字符串
JS怎么获取图片原始宽高
怎么在click事件中调用多个js函数
js如何往数组中添加新元素
js如何拆分字符串
JS怎么对数组内元素进行求和
JS如何判断屏幕大小
js怎么解析json数据
js如何实时获取浏览器窗口大小
原生JS实现别踩白块小游戏(五)
原生JS实现别踩白块小游戏(一)