May 2015
Beginner
220 pages
4h 16m
English
Gulp is a build system that automates common tasks. As in Grunt, we can compose our asset pipeline. However, there are a few differences between the two:
gulpfile.js.gulpfile.js file, we write our tasks like a regular Node.js script. We will see a demonstration of this in a minute.To use Gulp, we have to install it first. The following command will set up the tool globally:
npm install -g gulp
We are going to ...
Read now
Unlock full access