You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hono is a small, simple, and ultrafast web framework built on Web Standards. It works on Cloudflare Workers, Fastly Compute, Deno, Bun, Vercel, Netlify, AWS Lambda, Lambda@Edge, and Node.js. Fast, but not only fast.
layout
home
hero
name
text
tagline
image
actions
Hono
Web application framework
Fast, lightweight, built on Web Standards. Support for any JavaScript runtime.
src
alt
/images/code.webp
An example of code for Hono. import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => c.text('Hello Hono!'))
export default app