mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 11:29:02 +00:00
392 B
392 B
Hono is a lightweight ultrafast web framework designed for the edge.
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => c.text('Hono!'))
export default app
Get started with bun create or follow Hono's Bun quickstart.
$ bun create hono ./myapp
$ cd myapp
$ bun run start