If your sass files take time to compile and if Node-Sass supports all the features you used, then go with Node-Sass! If installing Dart-Sass(Dart VM) on your machine is not a problem, Dart-Sass is the best option . Also consider Node-Sass is deprecated and they won’t add new features.
Read moreHow do I install Dart Sass?
Dart Sass is available, compiled to JavaScript, as an npm package. You can install it globally using npm install -g sass which will provide access to the sass executable. You can also add it to your project using npm install –save-dev sass .
Read more