How can I easily get Sass (SCSS) compiled on Windows? Either terminal or a free GUI application. Woulnd't there be an easy NPM command from a module that can be installed globally?
Normally I would use Laravel and Webpack, but this is something created outside and I don't want to create too much of a setup for just this project.
Try npmjs.com/package/node-sass - minimal setup:
$ npm i -g node-sass
$ node-sass source.scss > output.css
# or more realistically
$ node-sass path/to/source.scss --output outputpath/ --output-style compressed
Quick test in WSL works. Can be run from shell scripts, makefiles, gulp, etc.
Steven Ventimiglia
Creative Technologist & Sr. Front-End Developer
One of my early favorites, and the inspiration for learning more about Node.js, NPM, Gulp and a bit about Election.
prepros.io