Gulp – Installation

Gulp – Installation

This article provides a step-by-step procedure of Gulp installation.

Node.js Installation
Run the setup to install the Node.js on your computer here.
Then open up the terminator in your system and enter the following command. It will display the installed Node.js version.

1
node -v

In the terminator, enter the following command to display the version of npm (Node.js package manager) which is used to install modules. It will display the installed Node.js version.

1
npm -v

Gulp Installation
In the terminator, enter the following command to install Gulp. Adding “-g” flag ensures that the Gulp is globally available for any project.

1
gulp -v

So far so good, That’s it!!! See ya!!! :)