Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-sass-chokidar

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-sass-chokidar

A thin wrapper around node-sass to replicate the --watch --recursive option using chokidar instead of gaze for significantly better performance

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Updates

  • 2022-06-30: Major version 2.0.0 is released upgrading to node-sass 7.0.1 for node 16 & 17 compatibility

DEPRECATED

This project had a good run but it looks like https://github.com/sass/dart-sass has now become the better choice. I Don't have the time to maintain this project and from a quick glance dart-sass is also using chokidar for fs normalization. LibSass is Deprecated since October and dart-sass is the new official recommendation. Cheers folks ;)

node-sass-chokidar

Build Status

node-sass-chokidar v1.5.0 is compatible with Node.js versions 8, 9, 10, 11, 12, 13, 14 node-sass-chokidar v2.0.0 is compatible with Node.js versions 16, 17

A thin wrapper around node-sass executable to use chokidar instead of Gaze when watching files for better performance.

The functionality of the node-sass executable is still intact, in fact, there's even more features, but chokidar instead of Gaze for watching files is the important park.

Why? Because Gaze in docker and various virtual machines uses a lot of resources whereas chokidar does not.

Read about the advantages of chokidar

When using node-sass --watch in docker for mac you will get really high CPU usage with com.docker.hyperkit and com.docker.osxfs (I've seen reports of up to 300%).

The cause of this is the node-sass dependency on Gaze. This package fixes this issue by using chokidar with node-sass instead of Gaze.

Examples


# Build a directory

node-sass-chokidar ./src -o ./build

  

# Watch a directory:

node-sass-chokidar ./src -o ./build --watch

  

# Watch a directory, don't perform an initial build until a change has occured:

node-sass-chokidar ./src -o ./build --watch --skip-initial

  

# Watch a directory, include node_modules import path so we can import from there e.g. @import 'bulma/bulma.sass';

node-sass-chokidar --include-path ./node_modules/ ./src -o ./src --watch

  

# Build a file

node-sass-chokidar ./src/index.scss ./build/index.css

  

# Watch a single file and don't perform an initial build until a change has occured:

node-sass-chokidar ./src/index.scss ./build/index.css --watch --skip-initial


Options


-w, --watch Watch a directory or file,

-m, --match-regex Only watches files in a directory that match the regular expression,

-r, --recursive Recursively watch directories or files

-o, --output Output directory,

-x, --omit-source-map-url Omit source map URL comment from output,

-i, --indented-syntax Treat data from stdin as sass code (versus scss),

-q, --quiet Suppress log output except on error,

-v, --version Prints version info,

--ext, Custom output file extension,

--skip-initial Skips initial build when passing the --watch flag,

--output-style CSS output style (nested | expanded | compact | compressed),

--indent-type Indent type for output CSS (space | tab),

--indent-width Indent width; number of spaces or tabs (maximum value: 10),

--linefeed Linefeed style (cr | crlf | lf | lfcr),

--source-comments Include debug info in output,

--source-map Emit source map,

--source-map-contents Embed include contents in map,

--source-map-embed Embed sourceMappingUrl as data URI,

--source-map-root Base path, will be emitted in source-map as is,

--include-path Path to look for imported files,

--follow Follow symlinked directories,

--precision The amount of precision allowed in decimal numbers,

--error-bell Output a bell character on errors,

--importer Path to .js file containing custom importer,

--functions Path to .js file containing custom functions,

--use-polling Watch using polling (chokidar's polling option),

--polling-interval Interval of filesystem polling if polling is being used,

--help Print usage info

Contributing

Feel free.

Keywords

FAQs

Package last updated on 30 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc