Check `package.json` for the `react` version under `dependencies` or `devDependencies`
Run `npm list react` in the project directory
Run `yarn list react` in the project directory
Run...
Install Node.js and npm from https://nodejs.org
Verify installation with `node -v` and `npm -v`
Open a terminal or command prompt
Create a new React app with `npx...
Install Node.js and npm
Open a terminal
Create a React app with Vite:
`npm create vite@latest my-react-app -- --template react`
Go to the project folder:
`cd my-react-app`
Install dependencies:
`npm install`
Start...
Install Node.js and npm
Open a terminal
Run `npx create-react-app my-app`
Replace `my-app` with your project name
Go to the project folder with `cd my-app`
Start the development server...
Install Node.js and npm
Open your terminal
Run `npx create-react-app my-app`
Change into the project folder with `cd my-app`
Start the development server with `npm start`
Open the app...