Tutorial
Installation

Installation

🎉

Read This on Github

This article is available on Github. You can read it there and contribute to it.
Github Link
Any Issue ?

⭐ How to install ReactJS ?

Installation Guide

  1. Node.js: This is a JavaScript runtime that allows you to run JavaScript code on the server-side. NodeJS Download From here (opens in a new tab)
  • To check if Node.js is installed, open the command prompt and type

    node -v

    or

    node --version

    The version of Node.js installed on your system will be displayed.

  1. React Developer Tools: This is a browser extension for Chrome that allows you to inspect and debug React components. React Developer Tools (opens in a new tab)

  2. Visual Studio Code: This is a popular code editor that can be used for React development. Vs Extension Thunder client (opens in a new tab)

  3. Vs Code Extension : Thunder client, ES7+ React/Redux/React-Native snippets, Bracket pair Colorizer, Auto Rename Tag, Live Server, Prettier - Code formatter are all extension that can be downloaded from vs code market place.Vs Extension ES7+ React/Redux/React-Native snippets (opens in a new tab)

  4. Once all the above software is installed, you can use the create-react-app command to create a new React project. You can open the command prompt and type the following command:

    npx create-react-app my-app

    This will create a new React project in a folder named "my-app".

  5. Then navigate to the project folder using the command prompt and type:

    npm start

    This will start the development server and open the application in your default browser.

  1. Now you can start building your React application using the tools and extensions installed in your development environment.