Why Gulp?
Gulp is a tool that helps you out with several tasks when it comes to web development. It’s often used to do front end tasks like:
If you are using css then no need to follow below steps. Just go to the html/ltr/index.html and open that file in to the browser for desire output.
If you are using scss and package managing then we have compilation tool (gulp) for that please follow the below steps.
Spinning up a web server
Reloading the browser automatically whenever a file is saved
Using preprocessors like Sass or LESS
Optimizing assets like CSS, JavaScript, and images
We have used gulp for minimizing js and sass. If you want to run project with gulp then follow below steps:
Assumed that you have install gulp or refer the getting
started page
Open our downloaded template and open command prompt where package.json is available.
Now, run the follow command. It is necessary to start gulp.
npm install
After complete the process of npm install, run gulp.
gulp
Now, you can change style in scss folder and when you
save it will automatically compile and when you refresh
.html file you will get your desire change.