搭建項目過程:css
Package.json篇html
1.打開命令行工具 cmdnode
2.默認安裝好nodejs以及全局安裝webpackreact
3.在適當的地方新建目錄jquery
mkdir webpack-react-es6webpack
cd webpack-react-es6git
npm init 回車es6
4.打開package.json文件github
{web
"name": "frame", //名稱
"version": "1.0.0", //版本
"description": "",
"dependencies": {},
"devDependencies": { //全部須要安裝的依賴
"antd": "2.7.2",
"babel-core": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-import": "^1.1.1",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-ie": "^6.6.2",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"classnames": "^2.2.3",
"css-loader": "^0.23.1",
"d3": "^4.6.0",
"dom-align": "^1.4.0",
"domkit": "0.0.1",
"echarts": "^3.4.0",
"echarts-for-react": "^1.1.6",
"es6-promise": "^3.1.2",
"exports-loader": "^0.6.3",
"express": "^4.13.3",
"file-loader": "^0.8.5",
"highcharts": "^4.2.5",
"immutable": "^3.8.1",
"imports-loader": "^0.6.5",
"less": "^2.6.0",
"less-loader": "^2.2.2",
"object-assign": "^1.0.0",
"openlayers": "^3.20.0",
"rc-queue-anim": "^0.11.9",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-height": "^2.1.0",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.0",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1",
"socket.io-client": "^1.4.8",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0",
"whatwg-fetch": "^0.11.0",
"zingchart": "^2.5.2",
"zingchart-react": "^1.0.5"
},
"main": "index.js", //指定加載的入口文件 默認值模塊根目錄下的index.js
"scripts": { //指定運行腳本命令的npm命令行縮寫 好比start指定了運行npm run start時所要執行的命令
"start": "node server.js",
"deploy": "webpack -p --config webpack.config.dist.js --colors --profile",
"build": "webpack",
"dev": "webpack-dev-server --hot --inline --devtool eval --progress --colors --content-base build --host 0.0.0.0",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "zly",
"license": "ISC"
}
Webpack篇
5.安裝webpack
1)全局安裝 $ npm install webpack -g
2)固然若是常規項目仍是把依賴寫入 package.json 包去更人性化:
$ npm init
$ npm install webpack --save-dev
6.配置
每一個項目下都必須配置有一個 webpack.config.js ,它的做用如同常規的 gulpfile.js/Gruntfile.js ,就是一個配置項,告訴 webpack 它須要作什麼。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
var webpack = require('webpack'); var commonsPlugin = new webpack.optimize.CommonsChunkPlugin('common.js'); module.exports = { //插件項,使用CommonsChunkPlugin的插件,用於提取多個入口文件的公共腳本部分,而後生成一個common.js來方便頁面之間進行復用 plugins: [commonsPlugin], //頁面入口文件配置 entry: { index : './src/js/page/index.js' }, //入口文件輸出配置(入口文件最終要生成什麼名字【index.js存放早path裏面】的文件,存放到哪裏) output: { path: 'dist/js/page', filename: '[name].js' }, module: { //加載器配置 loaders: [ //.css 文件使用style-loader和css-loader來處理 { test: /\.css$/, loader: 'style-loader!css-loader' }, //.js 文件使用jsx-loader來編譯處理 { test: /\.js$/, loader: 'jsx-loader?harmony' }, //.scss文件使用style-loader、css-loader 和 sass-loader 來編譯處理 { test: /\.scss$/, loader: 'style!css!sass?sourceMap'}, //圖片文件使用 url-loader 來處理,小於8kb的直接轉爲base64 { test: /\.(png|jpg)$/, loader: 'url-loader?limit=8192'} ] }, //其它解決方案配置 resolve: { //查找module的話從這裏開始查找 root: 'E:/github/flux-example/src', //絕對路徑 extensions: ['', '.js', '.json', '.scss'],//自動擴展文件後綴名意味着引入模塊不須要加後綴 alias: { //模塊別名定義,方便後續直接引用別名 無需多謝很長的地址 AppStore : 'js/stores/AppStores.js', //直接require(‘AppStore’) ActionType : 'js/actions/ActionType.js', AppAction : 'js/actions/AppAction.js' } } }; |
Url-loader會將樣式中引用到的圖片轉換成模塊來處理,使用該加載器須要進行安裝
npm install url-loader -save-dev
執行 $ webpack --display-error-details
其餘主要參數
1 2 3 4 5 6 7 |
$ webpack --config XXX.js //使用另外一份配置文件(好比webpack.config2.js)來打包
$ webpack --watch //監聽變更並自動打包
$ webpack -p //壓縮混淆腳本,這個很是很是重要!
$ webpack -d //生成map映射文件,告知哪些模塊被最終打包到哪裏了 |
1)HTML:
直接在頁面中引入webpack最終生成的頁面腳本
1 2 3 4 5 6 7 8 9 10 11 |
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>demo</title> </head> <body> <script src="dist/js/page/common.js"></script> <script src="dist/js/page/index.js"></script> </body> </html> |
|
|
能夠看到咱們連樣式都不用引入,畢竟腳本執行時會動態生成<style>並標籤打到head裏
2)JS:
各腳本模塊能夠直接使用 commonJS 來書寫,並能夠直接引入未經編譯的模塊,好比 JSX、sass、coffee等(只要你在 webpack.config.js 裏配置好了對應的加載器)。
咱們再看看編譯前的頁面入口文件(index.js):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
require('../../css/reset.scss'); //加載初始化樣式 require('../../css/allComponent.scss'); //加載組件樣式 var React = require('react'); var AppWrap = require('../component/AppWrap'); //加載組件 var createRedux = require('redux').createRedux; var Provider = require('redux/react').Provider; var stores = require('AppStore');
var redux = createRedux(stores);
var App = React.createClass({ render: function() { return ( <Provider redux={redux}> {function() { return <AppWrap />; }} </Provider> ); } });
React.render( <App />, document.body ); |
1.shimming
在 AMD/CMD 中,咱們須要對不符合規範的模塊(好比一些直接返回全局變量的插件)進行 shim 處理,這時候咱們須要使用 exports-loader 來幫忙:
{ test: require.resolve("./src/js/tool/swipe.js"),loader:"exports?swipe"}
以後再腳本中引用的時候
require('./tool/swipe.js');
swipe();
2.自定義公共模塊提取
在文章開始咱們使用了 CommonsChunkPlugin 插件來提取多個頁面之間的公共模塊,並將該模塊打包爲 common.js 。
但有時候咱們但願能更加個性化一些,咱們能夠這樣配置:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
var CommonsChunkPlugin = require("webpack/lib/optimize/CommonsChunkPlugin"); module.exports = { entry: { p1: "./page1", p2: "./page2", p3: "./page3", ap1: "./admin/page1", ap2: "./admin/page2" }, output: { filename: "[name].js" }, plugins: [ new CommonsChunkPlugin("admin-commons.js", ["ap1", "ap2"]), new CommonsChunkPlugin("commons.js", ["p1", "p2", "admin-commons.js"]) ] }; // <script>s required: // page1.html: commons.js, p1.js // page2.html: commons.js, p2.js // page3.html: p3.js // admin-page1.html: commons.js, admin-commons.js, ap1.js // admin-page2.html: commons.js, admin-commons.js, ap2.js |
3.獨立打包樣式文件
有時候可能但願項目的樣式能不要被打包到腳本中,而是獨立出來做爲.css,而後在頁面中以<link>標籤引入。這時候咱們須要 extract-text-webpack-plugin 來幫忙:
1 2 3 4 5 6 7 8 |
var webpack = require('webpack'); var commonsPlugin = new webpack.optimize.CommonsChunkPlugin('common.js'); var ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = { plugins: [commonsPlugin, new ExtractTextPlugin("[name].css")], entry: { //...省略其它配置 |
4.最終 webpack 執行後會乖乖地把樣式文件提取出來:
5.使用CDN/遠程文件
有時候咱們但願某些模塊走CDN並以<script>的形式掛載到頁面上來加載,但又但願能在 webpack 的模塊中使用上。
這時候咱們能夠在配置文件裏使用 externals 屬性來幫忙:
1 2 3 4 5 6 7 |
{ externals: { // require("jquery") 是引用自外部模塊的 // 對應全局變量 jQuery "jquery": "jQuery" } } |
須要留意的是,得確保 CDN 文件必須在 webpack 打包文件引入以前先引入。
咱們倒也可使用 script.js 在腳本中來加載咱們的模塊:
var $script = require("scriptjs");
$script("//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js", function() {
$('body').html('It works!')
});
6.與 grunt/gulp 配合
gulp.task("webpack", function(callback) {
// run webpack
webpack({
// configuration
}, function(err, stats) {
if(err) throw new gutil.PluginError("webpack", err);
gutil.log("[webpack]", stats.toString({
// output options
}));
callback();
});
});