
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@babel/plugin-external-helpers
Advanced tools
This plugin contains helper functions that’ll be placed at the top of the generated code
@babel/plugin-external-helpers is a Babel plugin that allows you to use Babel's helper functions from an external source rather than including them in every file. This can help reduce the overall bundle size by avoiding duplication of helper functions across multiple files.
Externalizing Babel Helpers
This configuration in your Babel setup will enable the use of external helpers. Instead of including Babel's helper functions in every file, they will be imported from an external source, reducing redundancy and potentially decreasing the bundle size.
module.exports = {
plugins: [
'@babel/plugin-external-helpers'
]
};
Using with a Custom Helper Library
You can specify a custom version of the helper library to use. This is useful if you have a specific version of Babel's helpers that you want to ensure compatibility with.
module.exports = {
plugins: [
['@babel/plugin-external-helpers', {
helperVersion: '7.0.0'
}]
]
};
babel-plugin-transform-runtime is another Babel plugin that helps to avoid duplication of helper functions by using a runtime library. Unlike @babel/plugin-external-helpers, which relies on externalizing helpers, transform-runtime uses a runtime library to achieve similar goals, often leading to smaller bundle sizes and avoiding polluting the global scope.
babel-plugin-external-helpers-2 is a fork of @babel/plugin-external-helpers with additional features and improvements. It aims to provide more flexibility and better performance compared to the original plugin.
This plugin contains helper functions that’ll be placed at the top of the generated code
See our website @babel/plugin-external-helpers for more information.
Using npm:
npm install --save-dev @babel/plugin-external-helpers
or using yarn:
yarn add @babel/plugin-external-helpers --dev
FAQs
This plugin contains helper functions that’ll be placed at the top of the generated code
We found that @babel/plugin-external-helpers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.