Skip to Content

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-app

Select vercel when prompted, then install dependencies:

cd my-app npm install

Install Vercel CLI:

npm install -g vercel

Hello 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 app

Run Locally

Start the development server:

vercel dev

Access http://localhost:3000 in your browser.

Deploy

Deploy to Vercel:

vercel deploy

Further Reading

See Hono on Vercel documentation .