/Knowledge/sources/honojs__hono/llms-full/routing-chained-route--97ad34afa738.md
Routing: Chained route - hono-docs
Routing: Chained route Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt chained route Summary ts twosla...
Routing: Chained route
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#chained-route
Summary
## Content
```ts twoslash
import { Hono } from 'hono'
const app = new Hono()
// ---cut---
app
.get('/endpoint', (c) => {
return c.text('GET /endpoint')
})
.post((c) => {
return c.text('POST /endpoint')
})
.delete((c) => {
return c.text('DELETE /endpoint')
})
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#chained-route",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Routing > Chained route",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 597,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Routing: Chained route",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}