Facebook Twitter Instagram
    TecAdmin
    • Home
    • Ubuntu 20.04
      • Upgrade Ubuntu
      • Install Java
      • Install Node.js
      • Install Docker
      • Install LAMP Stack
    • Tutorials
      • AWS
      • Shell Scripting
      • Docker
      • Git
      • MongoDB
    • FeedBack
    • Submit Article
    • About Us
    Facebook Twitter Instagram
    TecAdmin
    Home»Programming»Nodejs»How to Install Gulp.js on Fedora 31/30/29

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

    RahulBy RahulNovember 9, 20181 Min ReadUpdated: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
    
    gulp gulpjs node NodeJs npm
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp
    Previous ArticleHow to Install Gulp.js on Linux Mint 19/18
    Next Article How to close terminal without killing running processes on Linux

    Related Posts

    How To Install Node.js on Ubuntu 22.04

    Updated:May 27, 20223 Mins Read

    How To Install NVM on Ubuntu 22.04

    Updated:April 16, 20223 Mins Read

    How To Install NVM on Windows

    Updated:April 16, 20223 Mins Read

    How To Install Node.Js on Debian 11

    Updated:February 11, 20226 Mins Read

    How To Install NVM on Debian 11

    Updated:August 31, 20213 Mins Read

    How To Use Environment Variables in Node.js

    6 Mins Read

    Leave A Reply Cancel Reply

    Recent Posts
    • What is CPU? – Definition, Types and Parts
    • What is the /etc/aliases file
    • What is the /etc/nsswitch.conf file in Linux
    • How to Install Ionic Framework on Ubuntu 22.04
    • What is the /etc/hosts file in Linux
    Facebook Twitter Instagram Pinterest
    © 2022 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.