Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@automattic/babel-plugin-preserve-i18n
Advanced tools
A Babel plugin to preserves translation functions even when minified
Babel plugin that transforms this:
import { __, _x } from '@wordpress/i18n';
__( 'Hello' );
_x( 'World' );
to this:
import { __ as alias__, _x as alias_x } from '@wordpress/i18n';
const __ = alias__;
const _x = alias_x;
__( 'Hello' );
_x( 'World' );
Inspired by babel-plugin-optimize-react that does similar transforms for React imports.
The transform ensures that the __('Hello')
syntax remains intact in the output bundle (and even after minification if Terser uses the mangle.reserved
option) and can be extracted by WP i18n tools.
FAQs
A Babel plugin to preserves translation functions even when minified
The npm package @automattic/babel-plugin-preserve-i18n receives a total of 702 weekly downloads. As such, @automattic/babel-plugin-preserve-i18n popularity was classified as not popular.
We found that @automattic/babel-plugin-preserve-i18n demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 30 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.