Google News
logo
Gulp - Interview Questions
How do you install gulp?
Install gulp globally -
npm install --global gulp-cli​

Install gulp in your project devDependencies -
npm install --save-dev gulp​

Create a gulpfile.js at the root of your project - It looks like
gulp.task('default', function() {
  // place code for your default task here
});​

Run gulp -
Gulp​
Advertisement