Install Sass
ApplicationsApplications permalink
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).
LibrariesLibraries permalink
The Sass team maintains two Node.js packages for Sass, both of which
support the standard JavaScript API. The sass
package is pure
JavaScript, which is a little slower but can be installed on all platforms
Node.js supports. The sass-embedded
package wraps a JS API around the
Dart VM, so it’s faster but only supports Windows, Mac OS, and Linux.
There are also community-maintained wrappers for the following languages:
- Ruby
- Swift
- Java, including:
- A Gradle plugin.
- A lightweight Maven plugin wrapping the Sass
CLI. It specifies
the Sass version to use. The CLI arguments are passed-in with an
<args>
list. - A batteries-included Maven plugin wrapping Dart
Sass. It bundles a fixed
dart-sass
version. The CLI arguments are exposed as Maven parameters.