官方地址:https://www.webpackjs.com/

Concepts

At its core, webpack is a static module bundler for modern JavaScript applications. When webpack processes your application, it internally builds a dependency graph which maps every module your project needs and generates one or more bundles.

Learn more about JavaScript modules and webpack modules here.

Since version 4.0.0, webpack does not require a configuration file to bundle your project. Nevertheless, it is incredibly configurable to better fit your needs.

To get started you only need to understand its Core Concepts:

For a better understanding of the ideas behind module bundlers and how they work under the hood, consult these resources:

Entry

An entry point indicates which module webpack should use to begin building out its internal dependency graph. webpack will figure out which other modules and libraries that entry point depends on (directly and indirectly).

By default its value is ./src/index.js, but you can specify a different (or multiple entry points) by setting an entry property in the webpack configuration. For example:

webpack.config.js

module.exports = {
entry: './path/to/my/entry/file.js'
};

Learn more in the entry points section.

Output

The output property tells webpack where to emit the bundles it creates and how to name these files. It defaults to ./dist/main.js for the main output file and to the ./dist folder for any other generated file.

You can configure this part of the process by specifying an output field in your configuration:

webpack.config.js

const path = require('path');

module.exports = {
entry: './path/to/my/entry/file.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'my-first-webpack.bundle.js'
}
};

In the example above, we use the output.filename and the output.path properties to tell webpack the name of our bundle and where we want it to be emitted to. In case you're wondering about the path module being imported at the top, it is a core Node.js module that gets used to manipulate file paths.

The output property has many more configurable features. If you want to learn about the concepts behind it, you can read more in the output section.

Out of the box, webpack only understands JavaScript and JSON files. Loaders allow webpack to process other types of files and convert them into valid modules that can be consumed by your application and added to the dependency graph.

Note that the ability to import any type of module, e.g. .css files, is a feature specific to webpack and may not be supported by other bundlers or task runners. We feel this extension of the language is warranted as it allows developers to build a more accurate dependency graph.

At a high level, loaders have two properties in your webpack configuration:

  1. The test property identifies which file or files should be transformed.
  2. The use property indicates which loader should be used to do the transforming.

webpack.config.js

const path = require('path');

module.exports = {
output: {
filename: 'my-first-webpack.bundle.js'
},
module: {
rules: [
{ test: /\.txt$/, use: 'raw-loader' }
]
}
};

The configuration above has defined a rules property for a single module with two required properties: test and use. his tells webpack's compiler the following:

"Hey webpack compiler, when you come across a path that resolves to a '.txt' file inside of a require()/import statement, use the raw-loader to transform it before you add it to the bundle."

It is important to remember that when defining rules in your webpack config, you are defining them under module.rules and not rules. For your benefit, webpack will warn you if this is done incorrectly.

Keep in mind that when using regex to match files, you may not quote it. i.e /\.txt$/ is not the same as '/\.txt$/' or "/\.txt$/". The former instructs webpack to match any file that ends with .txt and the latter instructs webpack to match a single file with an absolute path '.txt'; this is likely not your intention.

You can check further customization when including loaders in the loaders section.

Plugins

While loaders are used to transform certain types of modules, plugins can be leveraged to perform a wider range of tasks like bundle optimization, asset management and injection of environment variables.

Check out the plugin interface and how to use it to extend webpack's capabilities.

In order to use a plugin, you need to require() it and add it to the plugins array. Most plugins are customizable through options. Since you can use a plugin multiple times in a config for different purposes, you need to create an instance of it by calling it with the new operator.

webpack.config.js

const HtmlWebpackPlugin = require('html-webpack-plugin'); //installed via npm
const webpack = require('webpack'); //to access built-in plugins module.exports = {
module: {
rules: [
{ test: /\.txt$/, use: 'raw-loader' }
]
},
plugins: [
new HtmlWebpackPlugin({template: './src/index.html'})
]
};

In the example above, the html-webpack-plugin generates an HTML file for your application by injecting automatically all your generated bundles.

There are many plugins that webpack provides out of the box! Check out the list of plugins.

Using plugins in your webpack config is straightforward. However, there are many use cases that are worth further exploration. Learn more about them here.

Mode

By setting the mode parameter to either developmentproduction or none, you can enable webpack's built-in optimizations that correspond to each environment. The default value is production.

module.exports = {
mode: 'production'
};

Learn more about the mode configuration here and what optimizations take place on each value.

Browser Compatibility

webpack supports all browsers that are ES5-compliant (IE8 and below are not supported). webpack needs Promise for import() and require.ensure(). If you want to support older browsers, you will need to load a polyfill before using these expressions.

By default its value is ./src/index.js, but you can specify a different (or multiple entry points) by setting an entry property in the webpack configuration. For example:

webpack.config.js

module.exports = {
entry: './path/to/my/entry/file.js'
};

Learn more in the entry points section.

最新文章

  1. 用JavaScript调用WCF Service
  2. 解决:Redis:java.util.NoSuchElementException: Unable to validate object at
  3. float、定位、inline-block、兼容性需注意的特性总结
  4. Mini projects #3 ---- Stopwatch: The Game
  5. 开源项目IPProxys的使用
  6. Linux 4.6分支已到生命尽头 请尽快升级至Linux 4.7.1
  7. JAVA 线程池, 多线程
  8. RDD.scala(源码)
  9. Matches Puzzle Game
  10. 利刃 MVVMLight 4:绑定和绑定的各种使用场景
  11. 带你找到五一最省的旅游路线【dijkstra算法推导详解】
  12. Android-----Intent中通过startActivity(Intent intent )隐式启动新的Activity
  13. Windows Server 2016-Powershell新建用户补充
  14. vue页面固定锁死
  15. C#写入Oracle 中文乱码问题
  16. js禁止页面滚动
  17. nat123学习笔记
  18. MySQL字符集与校对
  19. Vs2013 如何使用EF6来连接mysql数据库
  20. TF卡翻盖式卡座

热门文章

  1. 数组中的filter,every,some,find,findIndex
  2. Luogu P2935 最好的地方Best Spot
  3. yum用法笔记
  4. js获取此刻时间或者把日期格式时间转换成字符串格式的时间
  5. mysql官方下载安装教程(centos)
  6. 阿里 Linux服务器外网无法连接MySQL解决方法
  7. WinForm DevExpress使用之ChartControl控件绘制图表一——基础
  8. mnist数据的预测结果以及批量处理
  9. 对比AngularJS/jQueryUI/Extjs:没有一个框架是万能的
  10. 04_Tutorial 4: Authentication & Permissions 认证和权限