React Reactjs Installation And Setup Tutorial
By Saket Bhatnagar••Beginner to Intermediate
1npm install -g create-react-app
1npx create-react-app my-first-app
This will create a new React project in the my-first-app directory. Start the created project using the command `npm start`
1npm install -g vite
1npx create-vite my-first-app
This will create a new React project in the my-first-app directory. Start the created project using the command `npm run dev`