This is a guide on how to install the sass compiler through node and npm. TL; DR npm install node-sass nodemon --save-dev At package.json "script" add "css": "node-sass --include-path scss path/to/file.scss path/to/output.css", and "watch": "nodemon -e scss -x 'npm run css'" Now your setup has been done, enjoy. CSS uglify will be…