webpack4.X react-router
环境准备工作:windows7、webStorm 2017.1.4、Nodejs 8.7.0、npm 5.4.2
PS:安装的时我们都带上版本,这样即便webpack版本发生变化,也不会出现版本问题。
初始化package.json文件
npm init
npm安装react、react-dom包
npm install [email protected] [email protected] --save
或者
npm i -S [email protected] [email protected]
npm安装webpack、webpack-cli等包
npm install [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] --save-dev
或者
npm i -D [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected]
安装 react-router-dom
npm install react-router-dom --save-dev
或者
npm i -S react-router-dom
文件夹结构
src => views => home => Index.jsx
import React from ‘react‘; class Index extends React.Component { render() { return ( <div> 首页 </div> ); } } export default Index;
src => views => me => Index.jsx
import React from ‘react‘; class Index extends React.Component { render() { return ( <div> 个人中心 </div> ); } } export default Index;
src => views => shop => Index.jsx
import React from ‘react‘; class Index extends React.Component { render() { return ( <div> 商城 </div> ); } } export default Index;
src => views => Index.jsx
import React from ‘react‘; import {HashRouter,Route,NavLink} from ‘react-router-dom‘ import Me from ‘./me/Index‘ import Shop from ‘./shop/Index‘ import Home from ‘./home/Index‘; const Index = () => <HashRouter> <div> <div className="nav"> <NavLink to="/Home" activeClassName="selected" exact>首页</NavLink> <NavLink to="/Shop" activeClassName="selected" exact>商城</NavLink> <NavLink to="/Me" activeClassName="selected" exact>个人中心</NavLink> </div> <Route path="/Shop" component={Shop}/> <Route path="/Me" component={Me}/> <Route path="/Home" component={Home}/> </div> </HashRouter> export default Index;
src => index.js
import React from ‘react‘; import ReactDOM from ‘react-dom‘; import Index from ‘./views/Index‘; ReactDOM.render(<Index/>,document.getElementById(‘app‘));
static => index.html
<!DOCTYPE html> <html lang="en"> <head> <Meta charset="UTF-8"> <Meta http-equiv="X-UA-Compatible" content="IE=edge"> <Meta content="telephone=no" name="format-detection"> <title>react-router</title> </head> <body> <div id="app"></div> <script type=text/javascript src=js/index.js></script> </body> </html>
webpack => base.config.js
let config = { entry: { ‘index‘:‘./src/index.js‘ },resolve: { extensions: [".js",".json",".jsx",".css"],} }; module.exports = config;
webpack => dev.config.js
const webpack = require(‘webpack‘);//引入webpack const opn = require(‘opn‘);//打开浏览器 const merge = require(‘webpack-merge‘);//webpack配置文件合并 const path = require("path"); const baseWebpackConfig = require("./base.config");//基础配置 const webpackFile = require("./file.config");//一些路径配置 let config = merge(baseWebpackConfig,{ /*设置开发环境*/ mode: ‘development‘,output: { path: path.resolve(webpackFile.devDirectory),filename: ‘js/[name].js‘,chunkFilename: "js/[name].js",publicPath: ‘‘ },plugins: [ /*设置热更新*/ new webpack.HotModuleReplacementPlugin(),],module: { rules: [ { test: /\.(js|jsx)$/,use: [ ‘babel-loader‘,include: [ path.resolve(__dirname,"../src") ],exclude: [ path.resolve(__dirname,"../node_modules") ],} ] },/*设置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://127.0.0.1:8080/‘,secure: false } ],/*打开浏览器 并打开本项目网址*/ after() { opn(‘http://localhost:‘ + this.port); } } }); module.exports = config;
webpack => file.config.js
module.exports = { devDirectory:‘static‘,/*开发目录*/ proDirectory:‘dist‘,/*发布目录*/ resource:‘resource‘,/*静态资源*/ };
运行效果
项目地址:https://github.com/yangbiaoit/react-webpack/tree/master/02