export default function LandingPage() { let copied = false; const handleCopy = () => { navigator.clipboard.writeText("bun create ./MyComponent.tsx"); }; return (

bun create for React

Start a React dev server instantly from a single component file

bun create ./MyComponent.tsx

Zero Config

Just write your React component and run. No setup needed.

Auto Dependencies

Automatically detects and installs required npm packages.

Tool Detection

Recognizes Tailwind, animations, and UI libraries automatically.

How it Works

1

Create Component

Write your React component in a .tsx file

2

Run Command

Execute bun create with your file path

3

Start Developing

Dev server starts instantly with hot reload

Ready to Try?

Read Docs GitHub →
); }