How to Install ReactJS on Windows?

In this article, You’ll get to learn how to install ReactJS on Windows. We will guide you through each step of the installation process. Additionally, we’ll answer all your queries related to the installation of ReactJS, ensuring you have a smooth setup experience. Doesn’t matter if you’re a beginner or an experienced developer, this guide will help you get ReactJS up and running on your Windows system smoothly.

React JS -React is an open-source component-based front-end JavaScript library. It is used to create fast and interactive user interfaces for web and mobile applications. It is easy to create a dynamic application in React because it requires less coding and offer more functionality. It is used by big MNCs and fresh new startups

Features of React JS:

  1. Reusable Components: A single React app consists of many components each component has its own logic and code  but we can easily reuse components any number of times, reducing the developer’s time and increasing the efficiency of work.
  2. Debugging: React app can be easily debugged using  “react developer tools”. It’s a browser extension that can be used for both Chrome and Firefox.

Steps to Install React JS on Windows

Step 1: Install Node.js installer for Windows. Click on this link. Here, install the LTS version (the one present on the left). Once downloaded, open NodeJS without disturbing other settings, and click on the Next button until it’s completely installed.

Install the 14.18.1 LTS 

Step 2: Open the command prompt to check whether it is completely installed or not type the command –> 

node -v

Node Version is v14.15.3

If the installation went well it will give you the version you have installed  

Step 3: Now in the terminal run the below command: 

npm install -g create-react-app  

Installation will take few seconds 

It will globally install react app for you. To check everything  went well run the command  

create-react-app --version

version  4.0.3

If everything went well it will give you the installed version of react app

Step 4:Now Create a new folder where you want to make your react app using the below command: 

mkdir newfolder

Note: The newfolder in the above command is the name of the folder and can be anything.

Move inside the same folder using the below command:

cd newfolder (your folder name)

Step 5: Now inside this folder run the command –>

create-react-app reactfirst YOUR_APP_NAME

It will take some time to install the required dependencies

NOTE: Due to npm naming restrictions, names can no longer contain capital letters, thus type your app's name in lowercase.

Step 6: Now open the IDE of your choice for eg.  Visual studio code and open the folder where you have installed the react app newfolder (in the above example)  inside the folder you will see your app’s name reactapp (In our example). Use the terminal and move inside your app name folder.Use command  cd reactapp (your app name)

Step 7: To start your app run the below command :

npm start  

Once you run the above command a new tab will open in your browser showing React logo as shown below :

Congratulation you have successfully installed the react-app and are ready to build awesome websites and app. 

Conclusion

By following the straightforward steps outlined in the article, You can easily install React JS on your Windows. With features like reusable components and easy debugging, React JS simplifies the development process making it a popular choice among developers worldwide.

Install ReactJS on Windows: FAQs

How to install React JS in Ubuntu?

  • Install Node.js: sudo apt install nodejs.
  • Verify Node.js installation: node -v.
  • Install npm: sudo apt install npm.
  • Install create-react-app globally: sudo npm install -g create-react-app.
  • Create a new React app: create-react-app your_app_name.
  • Navigate into the created app directory: cd your_app_name.
  • Start the development server: npm start.

How to install React JS in Linux?

Follow the same steps as for Ubuntu mentioned above.

How to install React JS using npm?

  • Ensure Node.js and npm are installed.
  • Install create-react-app globally: npm install -g create-react-app.
  • Create a new React app: create-react-app your_app_name.
  • Navigate into the created app directory: cd your_app_name.
  • Start the development server: npm start.