Knowing what compiler to use for your SASS project can be daunting to decide on because there are numerous apps and extensions for doing that, so I'll be sharing with you three awesome ways you can install and get SASS up and running in your projects...
eke.hashnode.dev11 min read
node-sass is not recommended to use & was deprecated around Oct 2020 by the Sass team.
One should always go for the dart-sass on their new projects, that's the sass package from npm. :)
Awesome write up Eke Victor, I didn't know of Koala until now.
I'll like to add another way to set up SASS, if you don't mind. I think this is the only method that supports the latest version of Dart Sass, I'm not sure though. Here's how to set it up:
You could run the command on the terminal:
npm install -g sass
Then while starting a sass project, run npm install sass
Then in the package.json add the script:
"scripts": {
"sass": "sass --watch sass:css"
},
The script signifies that you're watching a folder named sass and then compiling to a folder named css.
Graham Boyle
I love learning how things work, I write about it sometimes.
I'm working on an article about sass; I will make reference to this. Thank you