This repository is configured for a React project using Vite — a fast, modern build tool optimized for frontend development.
npm create vite
Prompted responses:
Need to install the following packages:
[email protected]
Ok to proceed? (y) y
◇ Project name:
my_react_app
◇ Select a framework:
React
◇ Select a variant:
JavaScript
◇ Scaffolding project in /Users/abdullahnazmus-sakib/Desktop/GitHUb/React/my_react_app...
└ Done.
cd my_react_app
npm install
npm run dev
This will start the development server and launch your React app in the browser.
my_react_app/
├── public/
├── src/
│ ├── App.jsx
│ └── main.jsx
├── index.html
├── package.json
└── vite.config.js
- Uses React + JavaScript variant
- Built with Vite for lightning-fast dev experience
- Ideal for modern frontend workflows