EN
SCSS / SASS - local installation
0
points
In this article, we would like to show you how to locally install SCSS / SASS.
Quick solution:
npm i sass
Note:
You can also install sass locally as a dev-dependency for your project using:
npm i -D sasscommand.
Practical example
In order to install SCSS / SASS globally under Windows 10 we need to use node package manager (npm).
Open Command Prompt and type the following command:
npm i sass
Result:
Note:
The
npm i sasscommand is a shorthand fornpm install sass.