Install gulp.js on Ubuntu

Installation steps

sudo npm install gulp-cli -g
sudo npm install gulp -D
touch gulpfile.js
gulp --help

Use gulp with your project

Make sure you have files package.json and gulpfile.js in the directory. Then install dependencies with npm and start watching file changes.

sudo npm install
gulp watch