/Knowledge/sources/honojs__hono/llms-full/routing-basic--73e8b017bc45.md
Routing: Basic - hono-docs
Routing: Basic Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt basic Summary ts twoslash import { Hono...
Routing: Basic
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#basic
Summary
## Content
```ts twoslash
import { Hono } from 'hono'
const app = new Hono()
// ---cut---
// HTTP Methods
app.get('/', (c) => c.text('GET /'))
app.post('/', (c) => c.text('POST /'))
app.put('/', (c) => c.text('PUT /'))
app.delete('/', (c) => c.text('DELETE /'))
// Wildcard
app.get('/wild/*/card', (c) => {
return c.text('GET /wild/*/card')
})
// Any HTTP methods
app.all('/hello', (c) => c.text('Any Method /hello'))
// Custom HTTP method
app.on('PURGE', '/cache', (c) => c.text('PURGE Method /cache'))
// Multiple Method
app.on(['PUT', 'DELETE'], '/post', (c) =>
c.text('PUT or DELETE /post')
)
// Multiple Paths
app.on('GET', ['/hello', '/ja/hello', '/en/hello'], (c) =>
c.text('Hello')
)
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#basic",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Routing > Basic",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 592,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Routing: Basic",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}