
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-transform-jsx-css-modules
Advanced tools
Transform className attributes in JSX to reference CSS Modules
Transforms className
attributes in JSX to get css-modules' references.
Note: It does not turn on CSS Modules in your project, it assumes that you made it yourself (via webpack and css-loader for example).
import './styles.css'
const Component = () => (
<div styleName="root">
<h1 className="paragraph">Hello World</h1>
<p className="global" styleName="local">I'm an example!</p>
</div>
)
Will be transpiled into
import __CSSM__ from './styles.css'
const Component = () => (
<div className={__CSSM__['root']}>
<h1 className="paragraph">Hello World</h1>
<p className={["global", __CSSM__["local"]].join(" ")}>I'm an example!</p>
</div>
)
Install plugin
npm install --save-dev babel-plugin-transform-jsx-css-modules
Add plugin to your .babelrc
file
{
"plugins": [
"transform-jsx-css-modules"
]
}
Name | Type | Default | Description |
---|---|---|---|
pathToStyles | RegExp | /^\.\/styles\.css$/ | It specifies what imports should be transformed Note: Escape symbols if you specify it as a string |
pathToStyles
If you set it to /^\.\/module\.scss$/
it will handle imports which start and end with ./module.scss
:
{
"plugins": [
["transform-jsx-css-modules", {
"pathToStyles": "^\\.\\/module\\.scss$"
}]
]
}
import './module.scss'
Will be transformed into:
import __CSSM__ from './module.scss'
FAQs
Transform className attributes in JSX to reference CSS Modules
We found that babel-plugin-transform-jsx-css-modules 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
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.