Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Mar 16, 2024 via pnpm

sass 1.67.0

A pure JavaScript implementation of Sass.
Package summary
Share
0
issues
3
licenses
15
MIT
2
ISC
1
BSD-3-Clause
Package created
6 Jun 2017
Version published
14 Sep 2023
Maintainers
3
Total deps
18
Direct deps
3
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
15 Packages, Including:
binary-extensions@2.3.0
braces@3.0.2
chokidar@3.6.0
fill-range@7.0.1
fsevents@2.3.3
immutable@4.3.5
is-binary-path@2.1.0
is-extglob@2.1.1
is-glob@4.0.3
is-number@7.0.0
normalize-path@3.0.0
picomatch@2.3.1
readdirp@3.6.0
sass@1.67.0
to-regex-range@5.0.1

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
anymatch@3.1.3
glob-parent@5.1.2

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
source-map-js@1.0.2
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

3
All Dependencies CSV
β“˜ This is a list of sass 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
chokidar3.6.025.83 kBMIT
prod
immutable4.3.5134.87 kBMIT
prod
source-map-js1.0.237.16 kBBSD-3-Clause
prod

Visualizations

Frequently Asked Questions

What does sass do?

Sass, short for Syntactically Awesome StyleSheets, is a CSS preprocessor language that adds power and elegance to the basic language of CSS. It enables developers to use variables, nested rules, mixins, inline imports, and more, making it fun to work with CSS again. Sass gets translated to well-formatted, customizable CSS and boosts functionality and efficiency, resulting in less coding for the developer.

How do you use sass?

Utilizing Sass in your web project is straightforward. Firstly, install Sass using npm by running npm install -g sass for global access or npm install --save-dev sass if you want to add it to your specific project. This will provide both the Sass executable and a library.

Then you will want to compile your Sass (.scss) files into CSS. Here is a usage example:

const sass = require('sass');

const result = sass.compile('scssFilename'); // replace 'scssFilename' with your own .scss file name

// Alternatively, you can use the async version which returns a promise. However, note that the async version is slower than the compile function.
const result = await sass.compileAsync('scssFilename'); // replace 'scssFilename' with your own .scss file name

Please note that these examples are being given for demonstration purposes and for actual usage you should replace 'scssFilename' with the path to your .scss file. Also, these examples use Node.js API to include Sass and compile the .scss file.

Where are the sass docs?

The complete documentation of Sass, including its API, can be found on the official Sass website, https://sass-lang.com/documentation/js-api. The documentation contains all the essential information about Sass, including usage guidelines, explanations, and examples for every feature. It is an invaluable resource for anyone looking to get the best out of Sass in their web development projects.