Skip to content

My Easiest way to Start with React JS App

Published:

So, you wanna build a slick React app with Tailwind and Vite? Good choice. Here’s your no-BS, step-by-step setup guide. Let’s goooo 🧑‍💻💨

Table of contents

Open Table of contents

🥖 Install Bun (Only Once)

Because who doesn’t want to install something called “bun”? 🍞 Run this in PowerShell and poof — Bun is yours.

powershell -c "irm bun.sh/install.ps1|iex"

🌍 Install the CLI tool globally (Also Only Once)

This little gem sets up the whole Vite + Tailwind + React magic. Install it globally like the boss you are:

bun install -g vite-tailwind-react-setup

🧙‍♂️ Setup Your App

Time to conjure your new React app out of thin air. Just run this — no need for weird rituals.

new-react-app

📦 Install Dependencies

You’ve got the project. Now let’s feed it some packages. (Think of it like a software Happy Meal 🍔)

bun install

💻 Run the App

Now launch that bad boy in dev mode and see the magic happen. ✨

bun run dev

🎉 Boom! You’re Up and Running

That’s it. You’ve officially entered dev mode. Time to break things, fix things, and maybe even build something cool. 😎


Share this post on:

Previous Post
WXT: Browser Extension Framework
Next Post
Deploy React JS App to GitHub Pages