node-sass

JavaScript implementation of Sass compiler for converting SCSS to CSS

brewmacoslinux
Try with needOr install directly
Source

About

JavaScript implementation of a Sass compiler

Commands

node-sass

Examples

Compile a single SCSS file to CSS$ node-sass input.scss output.css
Watch a directory and compile SCSS files automatically$ node-sass --watch scss/ --output css/
Compile with compressed output and source maps$ node-sass input.scss output.css --output-style compressed --source-map true