Open In App

How to see the changes in whole directory/folder containing many sass files ?

SASS is a powerful preprocessing language that helps us to write our code more efficiently in an easy and concise manner. Some of the best features of sass are using variables, support nesting, and using functions. While it has many advantages, keeping track of all the changes in a sass file could seem like a complicated task.
The easiest method to compile changes in a sass file can be done with the help of Node Package Manager(NPM).
For this, you will need to install the latest version of Node.js or have a stable LTS version of the node. To check if you have properly installed Node.js in your system run the following commands in your terminal/command-prompt:

node -v 

npm -v 

After installing the latest version of Node.js, follow these steps to compile your sass files. These are:

Article Tags :