0 votes
in JavaScript by
Installing steps of Gulp.js

1 Answer

0 votes
by
Installing Gulp.js
Installing Gulp.js
  • Install Gulp command-line interface globally helps to execute gulp command from any project folder
npm install gulp-cli -g
  • One can verify if gulp has been installed successfully
gulp -v
  • Configure a folder and create package.json file if not created already
cd Gulp_Project1
npm init
  • Install Gulp Locally, this updates devDependencies section of package.json accordingly.
npm install gulp --save-dev
...