Installation of React

Pascual Vila
Frontend Instructor.
To start working with React, you need to install it in your project. There are several ways to do this, but the two most common are using Create React App or Vite. Both tools set up a development environment ready to use React quickly.
Option 1: Create React App
Create React App is a tool that allows you to create a React application with automatic configuration.
Steps:
- Open a terminal.
- Run the following command to install the
create-react-apppackage (if you don't have it installed):
npm install -g create-react-app
Continue with the following steps to install and run the application.