
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
react-css-variables
Advanced tools
npm install --save react-css-variables
Provides a HOC to create a component with props mapped to CSS variables. It allows to update CSS of underlying components without any DOM operation.
The HOC won't trigger a render if only one of the variables is changed. This can be a huge performance improvement if you have a component with a deep render tree, since instead of passing props in elements as inline styles, you can only set variables, and no render will be triggered.
import styled from 'styled-components'
import variables from 'react-css-variables'
// We use styled-components, but it's totally up to you, as long as the css uses variables.
const Title = styled.h1`
color: var(--color);
background: var(--background);
`
// Wrap our component with provided HOC.
const VariablesTitle = variables('color', 'background')(Title)
// Changing "color" or "background" will not trigger a render.
const Demo = () => (
<VariablesTitle color='red' background='blue'>
Hello world
</VariablesTitle>
)
FAQs
A React HOC for CSS variables
We found that react-css-variables 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.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.