Skip to content

Bun React

sh
bun create vite@latest

Directory Structure

./react
|-- eslint.config.js
|-- index.html
|-- package.json
|-- public
|   `-- vite.svg
|-- src
|   |-- App.css
|   |-- App.tsx
|   |-- assets
|   |   `-- react.svg
|   |-- index.css
|   |-- main.tsx
|   `-- vite-env.d.ts
|-- tsconfig.app.json
|-- tsconfig.json
|-- tsconfig.node.json
`-- vite.config.ts
sh
cd react
sh
bun i
sh
bun run dev

Accesse Browser

http://localhost:5173/

img