Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
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 1 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.