Webpack 官方文档翻译

05 - 使用加载器 - Webpack 官方文档翻译 Get

2016-07-04  本文已影响78人  勤劳的悄悄

什么是加载器

加载器本质上也是个 Javascript 模块,他的功能是将各种资源转换成易于使用的形式

加载器的特征

解析

加载器本质上就是个模块,可以想模块一样使用它

命名约定

一般加载器的命名格式为 XXX-loader,其中 XXX 表示要处理的资源类型,比如 json-loader

既可以用完整命名引用加载器 (比如 json-loader),也可以用短名称引用 (比如 json)

安装

通过 npm 安装

$ npm install xxx-loader --save

或者

$ npm install xxx-loader --save-dev

使用方法

有三种方式来使用加载器

require 方式


require("./loader!./dir/file.txt");
// => uses the file "loader.js" in the current directory to transform
//    "file.txt" in the folder "dir".

require("jade!./template.jade");
// => uses the "jade-loader" (that is installed from npm to "node_modules")
//    to transform the file "template.jade"
//    If configuration has some transforms bound to the file, they will still be applied.

require("!style!css!less!bootstrap/less/bootstrap.less");
// => the file "bootstrap.less" in the folder "less" in the "bootstrap"
//    module (that is installed from github to "node_modules") is
//    transformed by the "less-loader". The result is transformed by the
//    "css-loader" and then by the "style-loader".
//    If configuration has some transforms bound to the file, they will not be applied.

配置文件方式

在配置文件中,可以使用正则表达式,让加载器处理某种类型的所有文件

{
    module: {
        loaders: [
            { test: /\.jade$/, loader: "jade" },
            // => "jade" loader is used for ".jade" files

            { test: /\.css$/, loader: "style!css" },
            // => "style" and "css" loader is used for ".css" files
            
            // Alternative syntax:
            { test: /\.css$/, loaders: ["style", "css"] },
        ]
    }
}

命令行方式

看下面的例子

$ webpack --module-bind jade --module-bind 'css=style!css'

意思是使用 jade 加载器处理 jade 文件,使用 stylecss 加载器处理 .css 文件

参数

可以给加载器传入参数,格式和 Web 中的查询字符串相同

require 形式

require("url-loader?mimetype=image/png!./file.png");

配置文件形式

{ test: /\.png$/, loader: "url-loader?mimetype=image/png" }

或者

{
    test: /\.png$/,
    loader: "url-loader",
    query: { mimetype: "image/png" }
}

命令行形式

webpack --module-bind "png=url-loader?mimetype=image/png"
上一篇下一篇

猜你喜欢

热点阅读