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

Related questions

0 votes
asked Feb 25, 2020 in JavaScript by miceperry
+1 vote
asked Feb 28, 2020 in JavaScript by miceperry
+1 vote
asked Feb 15, 2020 in JAVA by rahuljain1
0 votes
asked Feb 25, 2020 in JavaScript by miceperry
...