
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
rollup-plugin-react-scoped-css
Advanced tools
Bring scoped CSS to React with Vite & Rollup. Lightweight component-level style isolation similar to Vue and Angular.
While using react in a professional context, I realized that it was lacking the scoped css feature that I learned to love from Vue and Angular. After some research I came across good plugins, but sadly were not compatible with vite and/or rollup. Thus, I decided to create this plugin.
$ npm i rollup-plugin-react-scoped-css
in vite:
// vite.config.js
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { reactScopedCssPlugin } from 'rollup-plugin-react-scoped-css'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), reactScopedCssPlugin()]
})
in rollup:
// rollup.config.js
import reactScopedCssPlugin from 'rollup-plugin-react-scoped-css';
export default {
input: 'src/input.js',
output: { file: 'ouput.js' },
plugins: [ reactScopedCssPlugin() ]
};
Notes: Because this plugin has been built with vite as its primary usecase, it doesn't transpile LESS, SCSS or other preprocessors. For that reason, you will likely need to add your transpilation plugins before reactScopedCssPlugin if you plan on using this without vite.
There are a few options available to customize how the plugin works
{
/**
* Which files should be included and parsed by the plugin
* Default: undefined
*/
include?: FilterPattern;
/**
* Which files should be excluded and that should not be parsed by the plugin
* Default: undefined
*/
exclude?: FilterPattern;
/**
* If you want regular files to be scoped & global files to be .global.css
* Default: false
*/
scopeStyleByDefault?: boolean;
/**
* If you want to customize the pattern for scoped styles.
* This will only work if scopeStyleByDefault is false
* Default: 'scoped'
*/
scopedStyleSuffix?: string;
/**
* If you want to customize the pattern for global styles.
* This will only work if scopeStyleByDefault is true
* Default: 'global'
*/
globalStyleSuffix?: string;
/**
* If you want to customize the pattern for style files.
* Default: ['css', 'scss', 'sass', 'less']
*/
styleFileExtensions?: string[];
/**
* If you want to customize the pattern for jsx files.
* Default: ['jsx', 'tsx']
*/
jsxFileExtensions?: string[];
/**
* If you want to customize the attribute prefix that is added to the jsx elements
* Default: 'v'
*/
hashPrefix?: string;
}
Since this plugin works in two parts, you might need to expose the first part, then add any other plugin, and then expose the second part of the plugin. This part is automatically handled with vite thanks to the enforce attribute.
const reactScopedPlugins = reactScopedCssPlugin()
export default {
//...
plugins: [ reactScopedPlugins[0], {...stylingPlugins}, reactScopedPlugins[1] ]
};
// Component.jsx
import './Component.scoped.scss'
export default function Sub() {
return (
<div className="wrap">
<h1>My Component</h1>
</div>
)
}
// Component.scoped.scss
.wrap {
width: 500px;
h1 { color: red; }
}
And just like that the styles will be scoped to the component.
Due to the way this plugin is working, it will apply the scope to the file and not the component individually... This may differ from other frameworks since they don't really let you define multiple components in the same file. This then means that if you have 2 components in the same file, the styles might conflict.
If you want a selector in scoped styles to be "deep", i.e. affecting child components, you can use the ::deep combinator:
.a::deep .b { /* ... */ }
The above will be compiled into:
.a[data-f3f3eg9] .b { /* ... */ }
Another expected format, which will generate the same result, is:
.a::v-deep .b { /* ... */ }
This is primarily for backwards compatibility, we recommend the ::deep selector.
DOM content created with dangerouslySetInnerHTML are not affected by scoped styles, but you can still style them using deep selectors.
Scoped styles do not eliminate the need for classes. Due to the way browsers render various CSS selectors, p { color: red } will be many times slower when scoped (i.e. when combined with an attribute selector). If you use classes or ids instead, such as in .example { color: red }, then you virtually eliminate that performance hit.
Be careful with descendant selectors in recursive components! For a CSS rule with the selector .a .b, if the element that matches .a contains a recursive child component, then all .b in that child component will be matched by the rule.
Anyone is free to open a PR and contribute to this project... just be civilized!
Inspired by react-scoped-css.
FAQs
Bring scoped CSS to React with Vite & Rollup. Lightweight component-level style isolation similar to Vue and Angular.
The npm package rollup-plugin-react-scoped-css receives a total of 3,462 weekly downloads. As such, rollup-plugin-react-scoped-css popularity was classified as popular.
We found that rollup-plugin-react-scoped-css demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.