Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Webpack] 支持哪些模块化加载?【热度: 154】 #760

Open
yanlele opened this issue May 26, 2024 · 0 comments
Open

[Webpack] 支持哪些模块化加载?【热度: 154】 #760

yanlele opened this issue May 26, 2024 · 0 comments
Labels
TOP100互联网 公司标签 工程化 web 项目工程化
Milestone

Comments

@yanlele
Copy link
Member

yanlele commented May 26, 2024

关键词:webpack 模块化支持

Webpack 支持以下几种模块化标准:

  1. ESM (ECMAScript Modules): 这是 JavaScript ES6 中引入的官方标准模块系统。使用 importexport 语句来导入和导出模块。

  2. CommonJS: 主要用于 Node.js,允许使用 require() 来加载模块和 module.exports 来导出模块。

  3. AMD (Asynchronous Module Definition): 用于异步加载模块,并使用 define 方法来定义模块。

  4. UMD (Universal Module Definition): 结合了 AMD 和 CommonJS 的特点,并支持全局变量定义的方式,使得模块可以在客户端和服务端上运行。

除此之外,Webpack 还可以处理非 JavaScript 文件并将它们视为模块,例如 CSS, LESS, SASS, 图像文件(PNG, JPG, GIF, SVG 等), 字体(OTF, TTF, WOFF, WOFF2, EOT), HTML 以及任何其他类型的文件。这通过使用相应的 loader 来实现,如 style-loader, css-loader, file-loader 等。这些 loader 会将非 JavaScript 文件转换为可以被 Webpack 处理的模块。

参考文档

@yanlele yanlele added TOP100互联网 公司标签 工程化 web 项目工程化 labels May 26, 2024
@yanlele yanlele added this to the milestone May 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
TOP100互联网 公司标签 工程化 web 项目工程化
Projects
None yet
Development

No branches or pull requests

1 participant