
Product
A New Overview in our Dashboard
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
babel-plugin-polyfill-corejs2
Advanced tools
The babel-plugin-polyfill-corejs2 package is designed to automatically replace ES2015+ code with equivalent down-leveled code that includes polyfills from the core-js library version 2. This allows developers to write modern JavaScript without worrying about the support in older environments. It's particularly useful for ensuring that new JavaScript features work across all browsers that a web application supports.
Automatic Polyfilling
Automatically detects the usage of ES2015+ features in your code and includes the necessary polyfills from core-js v2. This means you don't have to manually import or require polyfills in your code, reducing the bundle size and improving performance.
"useBuiltIns": "usage"
Configurable Environment
Allows you to specify the target environments for your application. Babel will use this information to determine which polyfills are necessary based on the features supported by those environments, ensuring that your code runs smoothly across different browsers.
{
"targets": {
"chrome": "58",
"ie": "11"
}
}
Similar to babel-plugin-polyfill-corejs2, but it relies on core-js version 3 for polyfills. core-js v3 offers more features and polyfills for newer ECMAScript specifications, making it a better choice for projects that need the latest JavaScript features.
A Babel preset that allows you to specify an environment and automatically enables the necessary plugins and polyfills based on the targeted browsers or runtime environments. While not a direct replacement, it offers similar functionality by including necessary polyfills through the use of core-js.
Using npm:
npm install --save-dev babel-plugin-polyfill-corejs2
or using yarn:
yarn add babel-plugin-polyfill-corejs2 --dev
Add this plugin to your Babel configuration:
{
"plugins": [["polyfill-corejs2", { "method": "usage-global" }]]
}
This package supports the usage-pure
, usage-global
, and entry-global
methods.
When entry-global
is used, it replaces imports to core-js
.
FAQs
A Babel plugin to inject imports to core-js@2 polyfills
The npm package babel-plugin-polyfill-corejs2 receives a total of 17,802,275 weekly downloads. As such, babel-plugin-polyfill-corejs2 popularity was classified as popular.
We found that babel-plugin-polyfill-corejs2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.