@babel/plugin-proposal-dynamic-import
信息
此插件包含在 @babel/preset-env
中,位于 ES2020。
将 import()
表达式转换为非 ESM 模块格式。
何时(不)使用此插件
如果您正在使用打包器,例如 Webpack、Rollup 或 Parcel,则不应使用此插件,而应让打包器处理 import()
表达式。
您应该在以下情况下使用此插件
- 您正在使用 ESM 编写 Node.js 库,但希望以 CommonJS(CJS) 格式分发它:安装此插件和
@babel/plugin-transform-modules-commonjs
- 您使用 RequireJS 在浏览器中加载模块:安装此插件和
@babel/plugin-transform-modules-amd
- 您使用 SystemJS 在浏览器中加载模块:安装此插件和
@babel/plugin-transform-modules-systemjs
此插件必须与上面提到的模块转换插件之一一起使用。
示例
input.js
import("jquery").then($ => {});
将被转换为
- CommonJS
- AMD
- SystemJS
output.js
Promise.resolve()
.then(() => _interopRequireWildcard(require("jquery")))
.then(($) => {});
output.js
define(["require"], function (_require) {
new Promise((_resolve, _reject) =>
_require(
["jquery"],
(imported) => _resolve(_interopRequireWildcard(imported)),
_reject
)
).then(($) => {});
});
output.js
System.register([], function (_export, _context) {
"use strict";
return {
setters: [],
execute: function () {
_context.import("jquery").then(($) => {});
}
};
});
安装
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-proposal-dynamic-import
yarn add --dev @babel/plugin-proposal-dynamic-import
pnpm add --save-dev @babel/plugin-proposal-dynamic-import
用法
使用配置文件(推荐)
babel.config.json
{
"plugins": [
"@babel/plugin-proposal-dynamic-import",
"@babel/plugin-transform-modules-commonjs"
]
}
通过 CLI
Shell
babel --plugins=@babel/plugin-proposal-dynamic-import,@babel/plugin-transform-modules-amd script.js
通过 Node API
JavaScript
require("@babel/core").transformSync("code", {
plugins: [
"@babel/plugin-proposal-dynamic-import",
"@babel/plugin-transform-modules-systemjs"
],
});