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-universal-css-prop
Advanced tools
Converts the `css` prop to a function call inside of `className`.
Converts the css
prop to a function call inside of className
.
<div css={{ color: 'red' }} />
💫
import _cssProp from 'css-in-js-lib'
<div className={_cssProp({ color: 'red' })} />
The _cssProp
function must return a string
.
npm i --save-dev babel-plugin-universal-css-prop
Then add the plugin to your .babelrc
file:
{
"plugins": [
"@babel/plugin-syntax-jsx",
["babel-plugin-universal-css-prop", { "packageName": "css-in-js-lib" }]
]
}
You must define a mandatory packageName
option that is the CSS in JS library that exposes the css function that is called with the css
prop expression (content).
If the function you want to use is not the default package export you can use the importName
option:
{
"plugins": [
["babel-plugin-universal-css-prop", {
"packageName": "emotion",
"importName": "css"
}]
]
}
FAQs
Converts the `css` prop to a function call inside of `className`.
The npm package babel-plugin-universal-css-prop receives a total of 0 weekly downloads. As such, babel-plugin-universal-css-prop popularity was classified as not popular.
We found that babel-plugin-universal-css-prop 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.