
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
clay-json-sass
Advanced tools
Streamy module that transforms a JSON stream into scss syntax Sass.
json-sass converts JSON objects into Sass maps, which are supported in Ruby Sass 3.3 and libsass 2.0.
npm install json-sass
So you can share values between your scripts and stylesheets without having to use something like SassyJSON, which doesn't work with libsass.
Example source file theme.json:
{
"string": "I am a string",
"boolean": true,
"number": 1.23,
"array": [1, 2, 3],
"object": {
"foo": "bar"
}
"null": null
}
From the command-line:
$ json-sass -i theme.json -o theme.scss -p "\$theme: "
Output theme.scss:
$theme: (
string: I am a string,
boolean: true,
number: 1.23,
array: (1, 2, 3),
object: (
foo: bar
),
null: null
);
Or you can use the Node API:
var fs = require('fs');
var jsonSass = require('json-sass');
fs.createReadStream('theme.json')
.pipe(jsonSass({
prefix: '$theme: ',
}))
.pipe(fs.createWriteStream('theme.scss'));
Or with gulp using vinyl-source-stream:
var gulp = require('gulp');
var jsonSass = require('json-sass');
var source = require('vinyl-source-stream');
var rename = require('gulp-rename');
gulp.task('theme', function() {
return fs.createReadStream('theme.json')
.pipe(jsonSass({
prefix: '$theme: ',
}))
.pipe(source('theme.json'))
.pipe(rename('theme.scss'))
.pipe(gulp.dest('./'));
});
You can also transform normal JavaScript values using the exposed utility function:
jsonSass.convertJs([1, 2, 3]); // (1, 2, 3)
jsonSass([opts])Returns a through stream. Available options:
prefix: Add some text to the beginningsuffix: Add some text to the end. Defaults to ';'.jsonSass.convertJs(jsValue)Convert a normal JavaScript value to its string representation in Sass. Ignores undefined and functions. Calls .toString() on non-plain object instances.
MIT
FAQs
Transform JSON into scss syntax Sass.
We found that clay-json-sass 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.