What problem does it solve? Developers want to run Next.js applications on the Bun runtime for faster installs, development, and builds, but face friction around runtime flags, Bun-specific APIs like bun:sqlite, configuration, and deployment targets. ## Core Features & Use Cases - Project Scaffolding and Setup: Create a Next.js app with bunx create-next-app, configure package.json scripts, and force the Bun runtime with the --bun flag. - Bun APIs in Next.js: Use bun:sqlite and Bun.file in Server Components, API routes, and Server Actions for data access without external databases. - Configuration and Deployment: Set up next.config.js with Turbopack and serverExternalPackages, then deploy via Docker or Vercel with awareness of edge runtime limits. - Use Case: Build a CRUD dashboard where API routes and Server Actions read and write directly to a local SQLite database through bun:sqlite, all served by the Bun runtime. ## Quick Start Ask the assistant to scaffold a new Next.js app with Bun and configure it to run on the Bun runtime with a SQLite-backed API route.