tags:

views:

36

answers:

1

Please advise me some command line utility or may be a function/method in JavaScript, Python or some other language to quickly convert SASS to CSS. I am going to use it with my text editor and want to work with SASS, then quickly convert this file to CSS. Thanks.

+3  A: 

The original Sass Ruby gem comes with such a command line utility (requires a Ruby installation, obv). It will translate sass to css and vice-versa, plus watch folders for changes and update automatically.

For installation instructions and usage, refer to the official Sass tutorial.

Daniel Mendel
if you want it to auto-compile, run sass --watch file.scss:file.css
barraponto