Sass

Download Sass

Get the latest versions of Sass for your development needs. Choose from package managers or binaries.

Installation Options

npm Package

$ npm install sass

  • Recommended for Node.js developers
  • Automatically gets the latest stable version
  • Works with all modern build tools

Standalone CLI

Download CLI Tool
  • Self-contained executable
  • Doesn't require Node.js
  • Ideal for CLI enthusiasts

Release Versions

Stable Release

v1.70.0 Latest
Released on
SHA-256: 3fba8f1c... Stable

Beta Release

v1.71.0-beta Beta
Released on
View Beta Features

History

View all previous releases and patches

View Full Log

Getting Started

Command Line Usage

$ sass input.scss output.css
                     
  • Use -w for watching files
  • Run sass --help for options

Node.js Integration

const sass = require('sass');
sass.compile('input.scss', {
  loadPaths: ['styles'],
  style: 'compressed',
});
                     

Works with all major bundlers like Webpack, Vite, and Parcel.

Need Help?

Having issues with your installation? Check our troubleshooting documentation or ask in our community forums.

View Support Options