Last Updated: 3/11/2026
Vercel
Vercel is an AI cloud platform for building, scaling, and securing web applications. Hono can be deployed to Vercel with zero configuration.
Setup
Create a new Vercel project:
npm create hono@latest my-appSelect vercel when prompted, then install dependencies:
cd my-app
npm installInstall Vercel CLI:
npm install -g vercelHello World
Export your Hono app as the default export in index.ts or src/index.ts:
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
return c.text('Hello Hono on Vercel!')
})
export default appRun Locally
Start the development server:
vercel devAccess http://localhost:3000 in your browser.
Deploy
Deploy to Vercel:
vercel deploy