This is a basic starting point to for a project using Gulp 4. Nothing fancy just compiling SCSS and watching file changes to update the browser.
- Check you have both Node and NPM Installed with
node -v
&npm -v
- Check if you have Gulp installed with
gulp -v
. If not then use the command:npm install gulp-cli -g
to install it globally. - Run
npm install --save-dev
. - Run
gulp watch
and edit/save a file to see the changes update.