Vite + React 🔥 Installation

1 min read

What is Vite?
Vite is a modern frontend build tool that replaces Create React App (CRA). It’s much faster because it compiles your code on demand instead of bundling everything at once.
Why use Vite instead of CRA?
✔ Faster startup time
✔ Optimized for modern browsers
✔ Built-in Hot Module Replacement (HMR)
✔ Supports React, TypeScript, Tailwind CSS, and more
1 . Setting Up a Vite + React Project
Run the following command in your terminal:
npm create vite@latest my-name-app --template react
OR if you're using yarn:
yarn create vite@latest my-name-app --template react
Then, navigate into your project folder:
cd my-name-app
npm install
npm run dev
0
Subscribe to my newsletter
Read articles from Mark Ocampos directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
