/Knowledge/sources/honojs__hono/llms-full/benchmarks-routers--part-03--fdec8aa5b3b8.md
Benchmarks: Routers (part 03) - hono-docs
Benchmarks: Routers (part 03) Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt routers Summary Then we...
Benchmarks: Routers (part 03)
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#routers
Summary
Then we sent the Request to the endpoints like below. ```ts twoslash interface Route { method: string path: string } // ---cut--- const routes: (Route & { name: string })[] = [ { name: 'short static', method: 'GET', path: '/user', }, { n...
Content
Then we sent the Request to the endpoints like below.
interface Route {
method: string
path: string
}
// ---cut---
const routes: (Route & { name: string })[] = [
{
name: 'short static',
method: 'GET',
path: '/user',
},
{
name: 'static with same radix',
method: 'GET',
path: '/user/comments',
},
{
name: 'dynamic route',
method: 'GET',
path: '/user/lookup/username/hey',
},
{
name: 'mixed static dynamic',
method: 'GET',
path: '/event/abcd1234/comments',
},
{
name: 'post',
method: 'POST',
path: '/event/abcd1234/comment',
},
{
name: 'long static',
method: 'GET',
path: '/very/deeply/nested/route/hello/there',
},
{
name: 'wildcard',
method: 'GET',
path: '/static/index.html',
},
]
Let's see the results.
Metadata
{
"chunk_index": 2,
"citation": "https://hono.dev/llms-full.txt#routers",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Benchmarks > Routers (3)",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 533,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Benchmarks: Routers (part 03)",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}