Skip to content
Dashboard

Bun runtime now in Public Beta for Vercel Functions

vercel.json
{
"bunVersion": "1.x"
}

Enable Bun runtime support in your app by adding bunVersion to vercel.json

src/index.ts
import { Hono } from 'hono';
const app = new Hono();
app.get('/', (c) => {
return c.text(`Hello from Hono on Bun ${process.versions.bun}!`);
});
export default app;

Hello World endpoint in Hono with the Bun runtime on Vercel