vip matka come kheloyar app kya hai sikkim art and culture drawing जीटीए इंडिया apk pure aap shram sudhar ds game download mission sagar 9 ldplayer 4 pokemon cards under 200 rupees mulinchi naave dino run no internet game तीन पत्ती अप्प्स न्यू गोल्डन सागर का रिजल्ट parimatch app for android launch game सटका सटका समग्र आईडी कैसे चेक करते हैं big small app money online game instagram link video download mp4 पोकी पोकी mp sasan logo account png स्कूल लॉगिन आईडी और पासवर्ड dps satta matka instagram video download mp4 apk dcm molecular weight pikachu vmax gold benjo application करते हुए दिखाओ panasakaya शक्ति पीठ इन गुजरात rajbet review fantasy app list in india vivah kya hota hai अभी मोबाइल nj lottery pick 3 तास भाग्यांक 8 का भविष्य 2024 प्रदेश किसे कहते हैं betbook247.com login sattasport com records php roulette app real money योजना स्थिति देखे acebit sp हिल क्लाइंब रेसिंग गेम janpad kya hai rummy goald विडमेट एपीके डाउनलोड Install React JS on Ubuntu 22.04 LTS - Tech Blog

Install React JS on Ubuntu 22.04 LTS

React. js is an open-source JavaScript library that is used for creating web frontend and UI components specifically for single-page applications. It’s used for handling the view layer for web and mobile apps. It is developed and maintained by Facebook and a large community of developers.

History of React JS

React was created by Jordan Walke, a software engineer at Facebook, who released an early prototype of React called “FaxJS”. It was first deployed on Facebook’s News Feed in 2011 and later on Instagram in 2012. And finally, it was open-sourced at JS Conference US in May 2013. And as a result, the Reacts first release was published in 2013.

In this tutorial, you will learn to install and create React Application on a Ubuntu Linux system.

View on Youtube:

Here are the major steps that you have to follow:

  1. Install a few utility packages
  2. –Add Node Repository 
  3. –Install Node JS
  4. –Create React App Utility
  5. –Finally Creating React App with Utility

Step 1 – Install Some Utility Packages and Update Repo:

install some necessary utility packages so  Install the following dependencies required by this tutorial like software-properties-common ca-certificates lsb-release apt-transport-https etc.

React JS

Step 2 – Add Node Repository:

Well, by default Node. js version comes with Ubuntu 22.04 LTS is 12.22.9, but we currently want the latest version 16.15. So, we need to add PPA sources which are required to be able to install NodeJS 16 on your Ubuntu 22.04 LTS.
Add the Node.js 16 (current stable version) PPA to your Ubuntu system

curl -sL https://deb.nodesource.com/setup_16.x | sudo bash -

sudo apt update 

Step 3 – Install Node JS:

Node.js is required to create and run a React.js application. The following steps will install Node.js 16 on your Ubuntu system. or click here to choose your desired version. Next, run the following command to install the Node.js to your system:

sudo apt install -y nodejs

Check the currently active version of Node.js

node --version 

Also, you can check npm version using.

npm --version

Also, you can check npx version using.

npx --version

React JS1

Step 3–Create React App Installer Utility Package:

You need to install create-react-app  a utility package in your system.

sudo npm -g install create-react-app 

React JS2

Step 4 – Create A New React Application

create-react-app myapp 

On successful application creation, you will see a long result on the screen. In the end, you will find the result like below with some useful commands.

React JS3

Step 5 – Start React Application

Once you have created your React application. This will create a folder in the current directory with the project name. Switch to that project and run yarn start to start the application.

cd myapp  npm start 

The default reacts application starts on port 3000. Access your React application using 3000 port with the system IP address. For local machines use “localhost” followed by port.

reactjs

Let’s create an awesome user interface with React.

Conclusion

In this tutorial, you have learned, how to set up the React.js development environment and access the application in a web browser. Additionally, you found instructions to create a production build of your React application.

The following two tabs change content below.

Subroto Mondal

Chief Coordinator HR&CR
I like Programming and New Technologies. And work with Linux.

Leave a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.