Skip to content

谈谈对 babel-polyfill 的了解

Posted on:2024年8月10日 at 17:05

babel polyfill 有三种:

babel-polyfill

babel-polyfill通过向全局对象和内置对象的prototype上添加方法来实现的。所以这会造成全局空间污染。

babel-polyfill使用的两种方式:

配置webpack.config.js里的entry设置为entry: [‘babel-polyfill’,path.join(__dirname, ‘index.js’)]

在webpack.config.js配置的主入口index.js文件的最顶层键入

import "babel-polyfill";

两者打印出来的大小都是一样的,打包后大小是280KB,如果没有使用babel-polyfill,大小是3.43kb。

两则相差大概81.6倍。原因是webpack把babel-polyfill整体全部都打包进去了。而babel-polyfill肯定也实现了所有ES6新API的垫片,文件一定不会小。

那么有没有一种办法,根据实际代码中用到的ES6新增API ,来使用对应的垫片,而不是全部加载进去呢?

是的,有的。那就是 babel-runtime & babel-plugin-transform-runtime,他们可以实现按需加载。

babel-runtime

简单说 babel-runtime 更像是一种按需加载的实现,比如你哪里需要使用 Promise,只要在这个文件头部

import Promise from "babel-runtime/core-js/promise";

就行了。

不过如果你许多文件都要使用 Promise,难道每个文件都要 import 一下吗?当然不是,Babel 官方已考虑这种情况,只需要使用 babel-plugin-transform-runtime 就可以解决手动 import 的苦恼了。

babel-plugin-transform-runtime

babel-plugin-transform-runtime 装了就不需要装 babel-runtime了,因为前者依赖后者。 总的来说,babel-plugin-transform-runtime 就是可以在我们使用新 API 时 自动 import babel-runtime 里面的 polyfill,具体插件做了以下三件事情:

babel-plugin-transform-runtime 优点:

使用方式:

在 .babelrc 中配置:

plugins: ["tranform-runtime"]

打包后大小为 17.4kb,比之前的280kb要小很多。

原文转自:https://fe.ecool.fun/topic/ffbc34ea-c928-4f17-b469-322b3c8be7be