基本命令配置
node环境下npm包的安装依赖
123456789$ mkdir react-demo && cd react-demo$ npm i -S webpack webpack-dev-server \html-webpack-plugin webpack-merge \babel-loader babel-core css-loader \style-loader babel-preset-react-hmre \babel-preset-es2015 babel-preset-react -D$ mkdir app dist assets$ vim assets/index.tmpl.html编写 index.tmpl.html
12345678910<html><head><meta http-equiv="Content-type" content="text/html; charset=utf-8"/><title><%= htmlWebpackPlugin.options.title %></title></head><body><div id="root"></div></body></html>配置你的 package.json 参数
123456789101112131415161718{"script":{"build":"webpack .","start":"webpack-dev-server ."},"babel":{"presets":["es2015","react"],"env":{"start":{"presets":["react-hmre"]}}}}新建 webpack.config.js 文件,来初始化webpack设置
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263const path = require('path');const HtmlWebpackPlugin = require('html-webpack-plugin');const webpack = require('webpack');const merge = require('webpack-merge');const TAGET = process.env.npm_lifecycle_event;process.env.BABEL_ENV = TAGET;const PATHS = {app: path.join(__dirname,'app'),build: path.join(__dirname,'dist'),template: path.join(__dirname,'assets','index.tmpl.html')};const common = {entry:{app:PATHS.app},output:{path:PATHS.build,filename:'bundle.js'},plugins:[new HtmlWebpackPlugin({title: 'react demo',template: PATHS.template,inject: 'body'})],module:{loaders: [{test: /\.jsx?$/,loaders: ['babel?cacheDirectory'],include: PATHS.app,}, {test: /\.css$/,loaders: ['style', 'css'],include: PATHS.app,}],},resolve:{extensions:['','js','jsx']}};if(TAGET === 'start' || ! TAGET) {module.exports = merge(common,{devtool:'eval-source-map',devServer:{contentBase:'/dist',historyApiFallback: true,hot:true,inline:true,progress:true,stats:'errors-only'},plugins:[new webpack.HotModuleRepleacementPlugin(),]});}if(TAGET === 'start' || ! TAGET) {module.exports = merge(common,{});}
App.jsx文件编写
|
|
index.jsx文件编写
|
|
本地启动服务器
|
|