Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@babel/helper-compilation-targets
Advanced tools
The @babel/helper-compilation-targets package is a helper utility used by Babel to determine which JavaScript language features need to be transformed based on the specified compilation targets, such as browsers or Node.js versions. It helps in generating the most efficient and compatible code for the specified environments.
Determining necessary plugins/presets
This feature allows you to determine which Babel plugins or presets are necessary to transform your code based on the specified target environments, such as the last two versions of all browsers or Safari versions greater than 7.
const { default: getTargets, filterItems } = require('@babel/helper-compilation-targets');
const targets = getTargets({
browsers: ['last 2 versions', 'safari > 7']
});
const plugins = filterItems(
require('@babel/preset-env/data/plugins'),
targets,
{ ignoreBrowserslistConfig: true }
);
Customizing target environments
This feature enables customization of the target environments for which you are compiling your code. For example, you can specify that you want to target environments that support ES modules or the current version of Node.js.
const { default: getTargets } = require('@babel/helper-compilation-targets');
const targets = getTargets({
esmodules: true,
node: 'current'
});
The browserslist package is used to share target browsers and Node.js versions between different front-end tools. It is similar to @babel/helper-compilation-targets in that it helps determine the set of browsers to support for tools like Autoprefixer, eslint-plugin-compat, and stylelint-unsupported-browser-features. However, it is a more general tool and not specific to Babel.
core-js-compat provides information about compatibility and required polyfills for different environments. It is similar to @babel/helper-compilation-targets in that it helps to determine which features need to be polyfilled based on the target environment. However, core-js-compat focuses on polyfills provided by core-js rather than Babel transformations.
Helper functions on Babel compilation targets
See our website @babel/helper-compilation-targets for more information.
Using npm:
npm install --save @babel/helper-compilation-targets
or using yarn:
yarn add @babel/helper-compilation-targets
v7.25.9 (2024-10-22)
babel-parser
, babel-template
, babel-types
syntacticPlaceholders
mode (@liuxingbaoyu)babel-helper-compilation-targets
, babel-preset-env
ClassAccessorProperty
to prevent the no-undef
rule (@victorenator)babel-parser
, babel-types
VISITOR_KEYS
etc. faster to access (@liuxingbaoyu)FAQs
Helper functions on Babel compilation targets
The npm package @babel/helper-compilation-targets receives a total of 44,743,143 weekly downloads. As such, @babel/helper-compilation-targets popularity was classified as popular.
We found that @babel/helper-compilation-targets 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.