/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-routers-423a8bbd1fb9-routers-s0533-c0002.md
Routers (3) - hono-docs
Routers (3) Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt routers Summary Then we sent the Requ...
Routers (3)
Source evidence: /Sources/raw/honojshono/honojshono.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.