create react app using npx or npm

npx will be available after installing Node.js

npx create-react-app my-react-app
cd my-react-app
npm start

This will start the development server, and you should see your new React app running in your default web browser at http://localhost:3000 or whatever port is using.