There are a couple of ways to start using Sass:
-
Applications
There are a good many applications that will get you up and running with Sass in a few minutes for Mac, Windows, and Linux. You can download most of the applications for free but a few of them are paid apps (and totally worth it).
- CodeKit (Paid)
- Compass.app (Paid, Open Source)
- Ghostlab (Paid)
- Hammer (Paid)
- Koala (Open Source)
- LiveReload (Paid, Open Source)
- Prepros (Paid)
- Scout-App (Free, Open Source)
-
Command Line
When you install Sass on the command line, you'll be able to run the
sassexecutable to compile.sassand.scssfiles to.cssfiles. For example:sass source/stylesheets/index.scss build/stylesheets/index.cssFirst install Sass using one of the options below, then run
sass --versionto be sure it installed correctly. If it did, this will include1.14.1. You can also runsass --helpfor more information about the command-line interface.Once it's all set up, go and play. If you're brand new to Sass we've set up some resources to help you learn pretty darn quick.
- Install Anywhere (Standalone)
- You can install Sass on Windows, Mac, or Linux by downloading the package for your operating system from GitHub and adding it to your
PATH. That's all—there are no external dependencies and nothing else you need to install. - Install Anywhere (npm)
-
If you use Node.js, you can also install Sass using npm by running
npm install -g sass
However, please note that this will install the pure JavaScript implementation of Sass, which runs somewhat slower than the other options listed here. But it has the same interface, so it'll be easy to swap in another implementation later if you need a bit more speed! - Install on Windows (Chocolatey)
-
If you use the Chocolatey package manager for Windows, you can install Dart Sass by running
choco install sass
- Install on Mac OS X (Homebrew)
-
If you use the Homebrew package manager for Mac OS X, you can install Dart Sass by running
brew install sass/sass/sass