• Home
  • Ubuntu 18.04
    • Whats New?
    • Upgrade Ubuntu
    • Install Java
    • Install Node.js
    • Install Docker
    • Install Git
    • Install LAMP Stack
  • Tutorials
    • AWS
    • Shell Scripting
    • Docker
    • Git
    • MongoDB
  • Funny Tools
  • FeedBack
  • Submit Article
  • About Us
TecAdmin
Menu
  • Home
  • Ubuntu 18.04
    • Whats New?
    • Upgrade Ubuntu
    • Install Java
    • Install Node.js
    • Install Docker
    • Install Git
    • Install LAMP Stack
  • Tutorials
    • AWS
    • Shell Scripting
    • Docker
    • Git
    • MongoDB
  • Funny Tools
  • FeedBack
  • Submit Article
  • About Us

How to Install Gulp.js on Fedora 31/30/29

Written by Rahul, Updated on January 31, 2020

Gulp is an toolkit helps developers for the automation of painful workflow during the development. This tutorial will help you to install Gulp on Fedora operating systems.

Step 1 – Installing Node.js

First of all, you need to install node.js on your system. Use following set of commands to add node.js dnf repository on your Fedora system and install it.

sudo dnf install -y gcc-c++ make
curl -sL https://rpm.nodesource.com/setup_10.x | sudo -E bash -

Then install the Nodejs package on your system.

sudo dnf install nodejs -y

Step 2 – Install Gulp.js on Fedora

After installation of Node.js and Npm on your system, use the following commands to install Gulp CLI globally on your system.

npm install -g gulp-cli

You have successfully installed the Gulp CLI tool on your system. Switch to your existing node.js application directory or create a new application with the below commands:

mkdir my-project && cd my-project
node init

Then add the Gulp module to your project

npm install --save-dev gulp

All done, Let’s check the installed version of Gulp CLI on your system and Gulp module in your application with the following command.

gulp --version

CLI version: 2.2.0
Local version: 4.0.2

Share it!
Share on Facebook
Share on Twitter
Share on LinkedIn
Share on Reddit
Share on Tumblr
Share on Whatsapp
Rahul
Rahul
Connect on Facebook Connect on Twitter

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

Leave a Reply Cancel reply

Popular Posts

  • How To Install Python 3.9 on Ubuntu 20.04 5
  • How To Install Python 3.9 on Ubuntu 18.04 0
  • How to Use AppImage on Linux (Beginner Guide) 2
  • How to Install Python 3.9 on CentOS/RHEL 7 & Fedora 32/31 0
  • How To Install VNC Server on Ubuntu 20.04 1
© 2013-2020 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy