What problem does it solve? Setting up server-side rendering for React without a framework requires wiring together server entry points, client hydration, bundling, and streaming manually, which is error-prone and time-consuming. ## Core Features & Use Cases - Custom SSR Server: Render React components to HTML strings or streams with Bun.serve and react-dom/server. - Streaming SSR with Suspense: Use renderToReadableStream with Suspense boundaries for progressive page delivery. - Client Hydration & Bundling: Hydrate with hydrateRoot and bundle the client entry using Bun.build with code splitting and minification. - Use Case: Build a lightweight server-rendered React site with server-side SQLite data fetching, initial data injection via window.INITIAL_DATA, and a production build pipeline without adopting Next.js. ## Quick Start Ask the AI to scaffold a Bun server-rendered React app with a streaming server entry, client hydration, and a production build script.