Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
jsvars-loader
Advanced tools
webpack loader for postcss for sharing style variables in both JS and CSS. Depends on postcss-simple-vars.
This loader allows you to define CSS styles in a common place, and then use those styles in both your JavaScript and your CSS.
Install this webpack loader:
npm install jsvars-loader --save
Configure webpack to use this loader first thing (before postcss) when loading CSS files:
module: {
loaders: [
{ test: /\.css$/, loader: "postcss-loader!jsvars-loader" }
]
}
Make sure you've got the postcss-simple-vars plugin enabled in your webpack config:
postcss: [
require('postcss-simple-vars')
]
Create a JS file with some styles you'd like to reuse:
module.exports = {
layout: {
list: {
width: '330',
spacing: '10'
}
},
color: {
list: {
background: 'rgba(255,255,255,1)'
}
}
};
From the JS side of things you can simply require
this file and use it.
From your CSS you "import" these variables by calling jsvars(<path to your vars file>)
. You can then use these variables in your CSS with the $(<variable name>)
syntax:
jsvars(common/styles.js)
.list{
width: $(layout-list-width)px;
background: $(color-list-background);
}
Deeply nested style properties are accessed by using dashes e.g. layout-list-width
.
License: MIT
FAQs
webpack loader for sharing style variables in both JS and CSS
The npm package jsvars-loader receives a total of 3 weekly downloads. As such, jsvars-loader popularity was classified as not popular.
We found that jsvars-loader 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
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.