Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@esr360
Last active February 21, 2017 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esr360/3cb1fb67a8e7a99fbb6e73be47edb029 to your computer and use it in GitHub Desktop.
Save esr360/3cb1fb67a8e7a99fbb6e73be47edb029 to your computer and use it in GitHub Desktop.
var sass = require('node-sass');
sass.render({
file: scss_filename,
[, options..]
}, function(err, result) { /*...*/ });
// OR
var result = sass.renderSync({
data: scss_content
[, options..]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment