βœοΈπŸ‘‹ React Setup
React has been designed from the start for gradual adoption. You can use as little or as much React as you need. Whether you want to get a taste of React, add some interactivity to an HTML page, or start a complex React-powered app, this section will help you get started.
πŸ”— Start a New React Project
If you want to build a new app or a new website fully with React, we recommend picking one of the React-powered frameworks popular in the community. Frameworks provide features that most apps and sites eventually need, including routing, data fetching, and generating HTML.
πŸ”— Installation React without a framework
This is recommended for beginners
With NPM:
npm create vite@latest
cd my-project npm install npm run dev
With Yarn:
yarn create vite