
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.
A package to require SCSS variables in JSON format.
This package allows you to use your SCSS variables in your JS code. Specifically, it takes a SCSS variable file (example below) and will parse, run Sass functions, and convert to JSON format.
Install via npm or yarn:
npm install scss-json --save-dev
yarn add scss-json --dev
There are some issues that need to be fixed:
For
v1.0.0, we just update dependencies and merging old pulls. The next phase is to fix the issues above!
This package requires a SCSS variables file that is isolated by itself with no other SCSS code. If you are working in a front-end framework or library it is likely that your SCSS code is already set up in this manner. For example, this package will work well with a variables.scss file that looks something like this:
// Font Sizes
$font-size: 14px;
$font-size-large: $font-size * 1.1;
// Colors
$text-color: #666;
$text-color-light: lighten($text-color, 15%);
$border-color: #123 !global; // use for all borders
When run on that code above, scss-json will output the below JSON:
{
'$font-size': '14px',
'$font-size-large': '15.4px',
'$text-color': '#666',
'$text-color-light': '#8c8c8c',
'$border-color': '#123'
}
Note that scss-json will filter out flags (marked with an !) and comments and evaluate Sass functions before it produces the JSON object.
In your CommonJS JavaScript file, requiring this package will return a function that takes a file path of your SCSS variables file. It also takes an optional options object, which is detailed in the next section.
var scssJson = require("scss-json");
var path = require("path");
var filePath = path.resolve(__dirname, "colors.scss");
var colors = scssJson(filePath);
The second argument of the returned function is an optional options object. Each option is detailed below:
SCSS variables files sometimes rely on other SCSS variables defined earlier in your import tree. In order to keep these files isolated (and still produce JSON), you can specify an array of files that your given file depends on. For example, below we are trying to convert our color mapping file, but it depends on the actual color definitions which are found in a different file.
var scssJson = require("scss-json");
var path = require("path");
var filePath = path.resolve(__dirname, "color-mapping.scss");
var dependencyPath = path.resolve(__dirname, "colors.scss");
var colors = scssJson(filePath, {
dependencies: [{ path: dependencyPath }],
});
SCSS variable files are able to provide local and global scope with the following method:
%scoped {
$font-size: 14px;
$font-size-large: $font-size * 1.1 !global;
}
html {
@extend %scoped;
}
This will keep $font-size scoped locally inside that block, while allowing it to be used to derive global variables marked with the !global flag. These variables will be available throughout your SCSS import tree.
If you use this method in your SCSS variables file, you can provide an option to scss-json to output only the global variables to JSON. The option takes the name of the scoping placeholder as a string.
var scssJson = require("scss-json");
var path = require("path");
var filePath = path.resolve(__dirname, "variables.scss");
var colors = scssJson(filePath, {
scope: "%scoped",
});
Change the naming scheme of SCSS variables in the JSON output using the rename option:
$first-variable: red;
$second-variable: blue;
var scssJson = require("scss-json");
var path = require("path");
var camelCase = require("lodash.camelCase");
var filePath = path.resolve(__dirname, "variables.scss");
var colors = scssJson(filePath, {
rename: function (name) {
return camelCase(name.replace("$", ""));
},
});
When run on the code above, scss-json will output the following JSON:
{
"firstVariable": "red",
"secondVariable": "blue"
}
The value returned by the rename function is used as-is, so be sure to return the original name if no changes are required. While this is best used for non-destructive renaming as shown in the above example, in the event that multiple variables are the same after renaming the JSON will include only the last-specified value.
You can also use the CLI scss-json <file>.
Pull requests are welcome. If you add functionality, then please add unit tests to cover it.
MIT © Jair Medeiros
FAQs
A package to export SCSS variables in JSON format
The npm package scss-json receives a total of 144 weekly downloads. As such, scss-json popularity was classified as not popular.
We found that scss-json 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
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.