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
                   2010-10-21 20:37:48
                
              if you want it to auto-compile, run sass --watch file.scss:file.css
                  barraponto
                   2010-10-22 23:48:22