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-plugin-transform-react-class-displayname
Advanced tools
Babel plugin that adds class' name as static property `displayName`
Babel plugin that injects class' name as displayName
property.
npm i -D babel-plugin-transform-react-class-displayname
or
yarn add babel-plugin-transform-react-class-displayname
via .babelrc
{
"plugins": ["transform-react-class-displayname"],
}
via cli
babel --plugins gtransform-react-class-displayname script.js
Note:
If You want to use this plugin with es2015
preset, you need to install transform class properties plugin
In:
const component = class Class1 {
static displayName = "Class1";
};
class Class2 {
static displayName = "Class2";
}
Out:
const component = class Class1 {
static displayName = "Class1";
};
class Class2 {
static displayName = "Class2";
}
FAQs
Babel plugin that adds class' name as static property `displayName`
The npm package babel-plugin-transform-react-class-displayname receives a total of 6 weekly downloads. As such, babel-plugin-transform-react-class-displayname popularity was classified as not popular.
We found that babel-plugin-transform-react-class-displayname demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.