webpack深入与实战

命令行

  1. 打包js
$ webpack hello.js bundle.js
// hello.js
require('./world.js');
function hello(str) {
  console.log(str);
}
  1. 打包css
    首先安装依赖:
cnpm i --save-dev style-loader css-loader

css-loader 使webpack能处理.css文件。
style-loader 把css-loader处理完返回的内容新建一个style标签并插入到head标签中。

// hello.js
require('./world.js');
require('style-loader!css-loader!./style.css');
function hello(str) {
  console.log(str);
}
hello('hello world');

提示:
也可以直接require('./style.css'),命令行执行:webpack hello.js bundle.js --module-bind 'css=style-loader!css-loader'

  1. 参数
  • --watch 监视文件变动并自动打包
  • --progress 显示打包进度
  • --display-modules 显示打包模块
  • --display-reasons 显示打包原因

基本配置

单入口

// webpack.config.js
var path = require('path');
module.exports = {
    entry: './src/scripts/main.js',
    output: {
        path: path.resolve(__dirname, 'dist/js'),
        filename: 'bundle.js'
    }
}

打包:$ webpack
如果命名为webpack.config.dev.js,则可以使用webpack --config webpack.config.dev.js

多入口

// webpack.config.js
var path = require('path');
module.exports = {
    entry: ['./src/scripts/main.js', './src/scripts/a.js'],
    output: {
        path: path.resolve(__dirname, 'dist/js'),
        filename: 'bundle.js'
    }
}

多页面

// webpack.config.js
var path = require('path');
module.exports = {
    entry: {
        main: './src/scripts/main.js',
        a: './src/scripts/a.js'
    },
    output: {
        path: path.resolve(__dirname, 'dist/js'),
        filename: '[name].[chunkHash].js'  // 还可以是hash(打包的hash值)
    }
}

生成html页面

安装插件:cnpm i --save-dev html-webpack-plugin
文档:https://www.npmjs.com/package/html-webpack-plugin

不指定模板

// webpack.config.js
var path = require('path');
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    entry: {
        main: './src/scripts/main.js',
        a: './src/scripts/a.js'
    },
    output: {
        path: path.resolve(__dirname, 'dist/js'),
        filename: '[name].[chunkHash].js'
    },
    plugins: [
        new HtmlWebpackPlugin()  // 不指定模板
    ]
}

指定模板

// webpack.config.js
var path = require('path');
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    entry: {
        main: './src/scripts/main.js',
        a: './src/scripts/a.js',
    },
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'js/[name].[chunkHash].js',
        publicPath: 'http://www.cdn.com/'
    },
    plugins: [
        new HtmlWebpackPlugin({
            filename: 'index.html',
            template: 'index.html',
            inject: false,
            title: 'webpack is good',
            minify: {
                collapseWhitespace: true,
                removeComments: true
            }
        })
    ]
}

<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <title><%= htmlWebpackPlugin.options.title %></title>
        <script src="<%= htmlWebpackPlugin.files.chunks.main.entry %>"></script>
    </head>
    <body>
        <% for (var key in htmlWebpackPlugin.files) {%>
            <%= key %>: <%=  JSON.stringify(htmlWebpackPlugin.files[key]) %>
        <% } %>

        <% for (var key in htmlWebpackPlugin.options) {%>
            <%= key %>: <%=  JSON.stringify(htmlWebpackPlugin.options[key]) %>
        <% } %>

        <script src="<%= htmlWebpackPlugin.files.chunks.a.entry %>"></script>
    </body>
</html>
```

## 多页面应用

```
// webpack.config.js
var path = require('path');
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    entry: {
        main: './src/scripts/main.js',
        a: './src/scripts/a.js',
        b: './src/scripts/b.js',
        c: './src/scripts/c.js',
    },
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'js/[name].[chunkHash].js',
        publicPath: 'http://www.cdn.com/'
    },
    plugins: [
        new HtmlWebpackPlugin({
            filename: 'a.html',
            template: 'index.html',
            inject: 'body',
            title: 'a.html',
            chunks: ['main', 'a']
        }),
        new HtmlWebpackPlugin({
            filename: 'b.html',
            template: 'index.html',
            inject: 'body',
            title: 'b.html',
            chunks: ['b']
        }),
        new HtmlWebpackPlugin({
            filename: 'c.html',
            template: 'index.html',
            inject: 'body',
            title: 'c.html',
            excludeChunks: ['b']
        }),
    ]
}
```

## ES6

```
// webpack.config.js
var path = require('path');
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    entry: './src/app.js',
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'js/[name].js'
    },
    module: {
        rules: [
            {
                test: /\.js$/,
                loader: 'babel-loader',
                exclude: /node_modules/,
                include: /src/,
                query: {
                    presets: ['env']
                }
            }
        ]
    },
    plugins: [
        new HtmlWebpackPlugin({
            filename: 'index.html',
            template: 'index.html',
            inject: 'body'  
        })
    ]
}
或者
{
  "name": "webpack-demo",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "babel": {
    "presets": ["env"]
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "webpack": "webpack --progress --display-modules --colors --display-reasons"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "babel-core": "^6.24.0",
    "babel-loader": "^6.4.1",
    "babel-preset-env": "^1.3.2",
    "html-webpack-plugin": "^2.28.0",
    "webpack": "^2.3.3"
  }
}
```

## 处理css

```
// webpack.config.js
var path = require('path');
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    entry: './src/app.js',
    output: {
        path: path.resolve(__dirname, 'dist'),
        filename: 'js/[name].js'
    },
    module: {
        rules: [
            {
                test: /\.js$/,
                loader: 'babel-loader',
                exclude: /node_modules/,
                include: /src/,
                options: {
                    presets: ['env']
                }
            }, 
            {
                test: /\.css$/,
                use: [
                    'style-loader',
                    'css-loader',
                    {
                        loader: 'postcss-loader?importLoaders=1',
                        options: {
                            plugins: function() {
                                return [
                                    require('precss'),
                                    require('autoprefixer')
                                ]
                            }
                        }
                    }
                ]
            },
            {
                test: /\.less$/,
                use: [
                    'style-loader',
                    'css-loader',
                    {
                        loader: 'postcss-loader',
                        options: {
                            plugins: function() {
                                return [
                                    require('precss'),
                                    require('autoprefixer')
                                ]
                            }
                        }
                    },
                    'less-loader'
                ]
            },
            {
                test: /\.scss$/,
                use: [
                    'style-loader',
                    'css-loader',
                    {
                        loader: 'postcss-loader',
                        options: {
                            plugins: function() {
                                return [
                                    require('precss'),
                                    require('autoprefixer')
                                ]
                            }
                        }
                    },
                    'sass-loader'
                ]
            }
        ]
    },
    plugins: [
        new HtmlWebpackPlugin({
            filename: 'index.html',
            template: 'index.html',
            inject: 'body'
        })
    ]
}
```

## 模板文件

```
{
                test: /\.html$/,
                loader: 'html-loader'
            },
```

## 图片

```
{
                test: /\.(png|jpg|svg)$/i,
                loader: 'file-loader'
            }
```
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容

  • 如果把项目开发的过程比作用积木搭房子的过程,Browserify:封装了各种各样的的小积木块,那怎么把这些积...
    shengwenjia阅读 486评论 0 0
  • webpack 介绍 webpack 是什么 为什么引入新的打包工具 webpack 核心思想 webpack 安...
    yxsGert阅读 6,440评论 2 71
  • GitChat技术杂谈 前言 本文较长,为了节省你的阅读时间,在文前列写作思路如下: 什么是 webpack,它要...
    萧玄辞阅读 12,663评论 7 110
  • 早上我开锅拿馒头的时候,锅盖随手放在内侧滴小锅旁边,锅盖倒了,把灶台边上的碗和勺子挤下去。。哗啦。。碎了。。 好吧...
    小猪天堂阅读 233评论 2 1
  • “一边是人生理想,一边是现实主义。其实两者并没有多大的冲突,关键是你有没有想去争取获得的勇气,勇气背后还有执行力。”
    一碗酒一座城阅读 225评论 0 0