If you are trying to install Gulp and you always get errors related to node-sass, here is a small tip that could fix it for you
Simply uninstall node-sass and install dart-sass
npm uninstall gulp-sass
npm install gulp-dart-sass
Then, update your Gulpfile.js to use gulp-dart-sass instead of gulp-sass for compiling Sass.
By following these steps, you should be able to resolve the compatibility issue with Node Sass and successfully run gulp watch without encountering the “Node Sass does not yet support your current environment” error.