# Node should be installed
$npm init
$npm install node-sass
$npm install sass
/* In Package.json -> Inside Scripts -> add this line of code*/
{
"scripts": {
...
"scss": "node-sass --watch scss/app.scss -o css"
/*
1.Where app.scss -> main files with all imports of *.scss
2. Where css -> Destination folder for all compiled SASS code into css
*/
},
}
$npm run scss