Use Gulp to write Sass effectively

What is Gulp?

According to Goh: Gulp is a package of Node.js, it is a task manager. Combined with some plugins, Gulp helps developers (mostly Web developers) automate a number of tasks like compile SASS / LESS, minify CSS, Javascript, automatically compile when files are changed, clean up files garbage, unit testing, etc.

I used the same guy as Grunt, but because of the configuration, I switched to Gulp (whichever is quicker, easy to use).

How to install

Since Gulp runs on Node.js , of course you have to install Node.js, right! How can you install Node.js all over the place?

After we have the node and npm we will install it to gulp in global so we can type gulp

Share the news now