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 Ionic on Fedora 36/35

    How to Install Ionic on Fedora 36/35

    RahulBy RahulJuly 2, 20202 Mins ReadUpdated:June 23, 2022

    Ionic framework is an open-source UI toolkit for building mobile and desktop applications using core web technologies like HTML, CSS, and JavaScript. Ionic is designed to work and display beautifully on all current mobile devices and platforms.

    This article will help you to install the Ionic framework command-line utility on Fedora 36/35/34/33 Linux systems.

    Step 1 – Install Node.js

    Ionic required Nodejs to be installed on your system. The systems that don’t have installed Nodejs use the following commands to install the Node.js 14.x version on your system. You can visit our tutorial to install latest Node.js on Fedora systems.

    curl -sL https://rpm.nodesource.com/setup_14.x | sudo -E bash -
    sudo dnf install nodejs
    

    Step 2 – Install Cordova

    After installing nodejs, run the following command to install Cordova on your system using the npm command. It will install all other required node modules on your system.

    sudo npm install -g cordova
    

    Step 3 – Install Ionic on Fedora

    Ionic provides and commands line utility for creating packages, building, and starting applications. Use the NPM command to install the Ionic framework on your system.

    sudo npm install -g @ionic/cli
    

    After completing the installation of the Ionic framework, use the following command to check the installed version.

    ionic -v
    
    6.16.3
    

    Step 4 – Create Sample Application

    Now, You need to create a new Ionic application on your computer by running the following command.

    ionic start
    

    Now follow the wizard:

    1. Select framework between React or Angular.
    2. Now, enter a name for your new application
    3. Select a starter template. The details of each template is listed on screen.

    After completing the Wizard, you will get a message “Your Ionic app is ready!”. It will also show the next steps on the screen.

    Now, run the below command from your application directory.

    cd ionic-app
    ionic serve --host 0.0.0.0 --port 8100
    

    Then access your ionic application in a web browser using system IP.

    install and create ionic app on fedora

    fedora Ionic NodeJs
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp
    Previous ArticleDocker-compose with Persistent MySQL Data
    Next Article Docker-compose for MySQL with phpMyAdmin

    Related Posts

    How to Install Ionic Framework on Ubuntu 22.04

    3 Mins Read

    How To Install Apache Solr 9.0 on Fedora 36/35

    Updated:May 26, 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 Git on Fedora Linux

    Updated:May 31, 20222 Mins Read

    Top 5 Most Stable Linux Distributions in 2022

    Updated:January 11, 20226 Mins Read

    Leave A Reply Cancel Reply

    Recent Posts
    • 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
    • How to Install Angular CLI on Ubuntu 22.04
    Facebook Twitter Instagram Pinterest
    © 2022 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

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