← Lesson
BitWithBite
React · Quick Reference

Lesson 2 — Vite Setup Cheat Sheet

React
In one line: Vite scaffolds a React project in seconds, with a standard src/ folder you'll reuse in every project.

Scaffolding

npm create vite@latest my-app -- --template react cd my-app && npm install && npm run dev

Folder Structure

main.jsx
Entry point
App.jsx
Root component
index.css
Global styles
components/
Reusable UI pieces