Installation
Read This on Github
⭐ How to install ReactJS ?
Installation Guide
- 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.
-
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)
-
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)
-
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)
-
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".
-
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.
- Now you can start building your React application using the tools and extensions installed in your development environment.