The Bun runtime is now available in Public Beta for Vercel Functions. You can choose between Node.js and Bun as your project runtime, selecting the best option for your workload. Benchmarks show Bun reduced average latency by 28% for CPU-bound Next.js rendering compared to Node.js. To use Bun in Vercel Functions, set the runtime globally in your project's vercel.json : Enable Bun runtime support in your app by adding bunVersion to vercel.json We currently support the following frameworks, with more on the way: Next.js Hono Express Nitro Bun supports TypeScript with zero configuration. Here's an example with Hono: import { Hono } from 'hono' ; const app = new Hono ( ) ; app . get ( '/' , ( c ) => { return c . text ( ` Hello from Hono on Bun ${ process . versions . bun } !…