NPM Star
Collections
  1. Home
  2. Compare
  3. sass vs styled-components
NPM Compare

Compare NPM packages statistics, trends, and features

CollectionsVS Code extensionChrome extensionTermsPrivacyLinkTreeIndiehackersBig Frontendqiuyumi

Unable to load comparison data. Please try again later.

A pure JavaScript implementation of Sass. Sass makes CSS fun again.

<table> <tr> <td> <img width="118px" alt="Sass logo" src="https://rawgit.com/sass/sass-site/master/source/assets/img/logos/logo.svg" /> </td> <td valign="middle"> <a href="https://www.npmjs.com/package/sass"><img width="100%" alt="npm statistics" src="https://nodei.co/npm/sass.png?downloads=true"></a> </td> <td valign="middle"> <a href="https://github.com/sass/dart-sass/actions"><img alt="GitHub actions build status" src="https://github.com/sass/dart-sass/workflows/CI/badge.svg"></a> <br> <a href="https://ci.appveyor.com/project/nex3/dart-sass"><img alt="Appveyor build status" src="https://ci.appveyor.com/api/projects/status/84rl9hvu8uoecgef?svg=true"></a> </td> </tr> </table>

This package is a distribution of Dart Sass, compiled to pure JavaScript with no native code or external dependencies. It provides a command-line sass executable and a Node.js API.

  • Usage
  • See Also
  • Behavioral Differences from Ruby Sass

Usage

You can install Sass globally using npm install -g sass which will provide access to the sass executable. You can also add it to your project using npm install --save-dev sass. This provides the executable as well as a library:

const sass = require('sass'); const result = sass.compile(scssFilename); // OR // Note that `compileAsync()` is substantially slower than `compile()`. const result = await sass.compileAsync(scssFilename);

See the Sass website for full API documentation.

Legacy API

Dart Sass also supports an older JavaScript API that's fully compatible with Node Sass (with a few exceptions listed below), with support for both the render() and renderSync() functions. This API is considered deprecated and will be removed in Dart Sass 2.0.0, so it should be avoided in new projects.

Sass's support for the legacy JavaScript API has the following limitations:

  • Only the "expanded" and "compressed" values of outputStyle are supported.

  • Dart Sass doesn't support the precision option. Dart Sass defaults to a sufficiently high precision for all existing browsers, and making this customizable would make the code substantially less efficient.

  • Dart Sass doesn't support the sourceComments option. Source maps are the recommended way of locating the origin of generated selectors.

See Also

  • Dart Sass, from which this package is compiled, can be used either as a stand-alone executable or as a Dart library. Running Dart Sass on the Dart VM is substantially faster than running the pure JavaScript version, so this may be appropriate for performance-sensitive applications. The Dart API is also (currently) more user-friendly than the JavaScript API. See the Dart Sass README for details on how to use it.

  • Node Sass, which is a wrapper around LibSass, the C++ implementation of Sass. Node Sass supports the same API as this package and is also faster (although it's usually a little slower than Dart Sass). However, it requires a native library which may be difficult to install, and it's generally slower to add features and fix bugs.

Behavioral Differences from Ruby Sass

There are a few intentional behavioral differences between Dart Sass and Ruby Sass. These are generally places where Ruby Sass has an undesired behavior, and it's substantially easier to implement the correct behavior than it would be to implement compatible behavior. These should all have tracking bugs against Ruby Sass to update the reference behavior.

  1. @extend only accepts simple selectors, as does the second argument of selector-extend(). See issue 1599.

  2. Subject selectors are not supported. See issue 1126.

  3. Pseudo selector arguments are parsed as <declaration-value>s rather than having a more limited custom parsing. See issue 2120.

  4. The numeric precision is set to 10. See issue 1122.

  5. The indented syntax parser is more flexible: it doesn't require consistent indentation across the whole document. See issue 2176.

  6. Colors do not support channel-by-channel arithmetic. See issue 2144.

  7. Unitless numbers aren't == to unit numbers with the same value. In addition, map keys follow the same logic as ==-equality. See issue 1496.

  8. rgba() and hsla() alpha values with percentage units are interpreted as percentages. Other units are forbidden. See issue 1525.

  9. Too many variable arguments passed to a function is an error. See issue 1408.

  10. Allow @extend to reach outside a media query if there's an identical @extend defined outside that query. This isn't tracked explicitly, because it'll be irrelevant when issue 1050 is fixed.

  11. Some selector pseudos containing placeholder selectors will be compiled where they wouldn't be in Ruby Sass. This better matches the semantics of the selectors in question, and is more efficient. See issue 2228.

  12. The old-style :property value syntax is not supported in the indented syntax. See issue 2245.

  13. The reference combinator is not supported. See issue 303.

  14. Universal selector unification is symmetrical. See issue 2247.

  15. @extend doesn't produce an error if it matches but fails to unify. See issue 2250.

  16. Dart Sass currently only supports UTF-8 documents. We'd like to support more, but Dart currently doesn't support them. See dart-lang/sdk#11744, for example.

Disclaimer: this is not an official Google product.

No README available

Dependencies Comparison

sass

Dependencies

chokidar^5.0.0
immutable^5.1.5
source-map-js>=0.6.2 <2.0.0

Dev Dependencies

Peer Dependencies

styled-components

Dependencies

stylis4.3.6
csstype3.2.3
css-to-react-native3.2.0
@emotion/is-prop-valid1.4.0

Dev Dependencies

jest^30.1.3
react^18
rollup^3.29.4
webpack^5.105.4
prettier^3.6.2
react-dom^18
babel-jest^30.1.2
prop-types^15.8.1
typescript^5.4.5
@babel/core^7.24.5
@types/jest^30.0.0
@types/node^18.19.31
js-beautify^1.15.1
ts-toolbelt^9.6.0
@types/react^18
@types/enzyme^3.10.18
@types/stylis4.2.7
@types/react-dom^18
@babel/preset-env^7.24.5
stylis-plugin-rtl^2.1.1
@types/js-beautify^1.14.3
rollup-plugin-json^4.0.0
@babel/preset-react^7.24.1
babel-plugin-tester^10.1.0
react-test-renderer^18.0.0
@testing-library/dom^10.4.1
jest-serializer-html^7.1.0
jest-watch-typeahead^3.0.1
@rollup/plugin-terser^0.4.4
react-frame-component^4.1.3
rollup-plugin-replace^2.2.0
@testing-library/react^16.3.0
jest-environment-jsdom^30.1.2
rollup-plugin-commonjs^10.1.0
@babel/preset-typescript^7.24.1
rollup-plugin-sourcemaps^0.6.3
@rollup/plugin-typescript^11.1.6
@testing-library/jest-dom^6.8.0
@types/react-test-renderer^18.0.0
rollup-plugin-node-resolve^5.2.0
@testing-library/user-event^14.6.1
@babel/helper-module-imports^7.24.3
@types/react-frame-component^4.1.6
@babel/plugin-external-helpers^7.24.1
babel-plugin-styled-components^2.1.4
babel-plugin-add-module-exports^1.0.4
@babel/plugin-proposal-class-properties^7.18.6
@babel/plugin-transform-flow-strip-types^7.24.1
@babel/plugin-proposal-object-rest-spread^7.20.7

Peer Dependencies

react>= 16.8.0
react-dom>= 16.8.0
react-native>= 0.68.0
css-to-react-native>= 3.2.0
StarsIssuesVersionUpdatedⓘLast publish dateCreatedⓘPackage creation dateSizeⓘMinified + Gzipped size
S
sass
4,191731.100.0a month ago9 years agoinstall size 679.0 KB
S
styled-components
41,060136.4.2a month ago10 years agoinstall size 12.6 KB

Who's Using These Packages

sass

form-generator
form-generator

:sparkles:Element UI表单设计及代码生成器

epoch
epoch

A general purpose, real-time visualization library.

pixel-editor
pixel-editor

An online canvas based Pixel Art creation tool for Lospec.com

wagon
wagon

Wagon is a command line tool that let's you develop for Locomotive right on your local machine.

laravue-core
laravue-core

Laravel package to provide core functionalities of Laravue dashboard

styled-components

apple-music-js
apple-music-js

A music streaming service built from the ground up using React & Redux

3drepo.io
3drepo.io

3D Repo web server

cheeseswap-interface
cheeseswap-interface

Web swap/exchange interface

pola-web
pola-web

Pola pomoże Ci odnaleźć polskie wyroby. Zabierając Polę na zakupy odnajdujesz produkty “z duszą” i wspierasz polską gospodarkę.