/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-path-45948703af8c-path-s0586-c0000.md
path - hono-docs
path Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt path Summary The request pathname. Content T...
path
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#path
Summary
The request pathname. ts twoslash import { Hono } from 'hono' const app = new Hono() // ---cut--- app.get('/about/me', async (c) => { const pathname = c.req.path // `/about/me` // ... })
Content
The request pathname.
import { Hono } from 'hono'
const app = new Hono()
// ---cut---
app.get('/about/me', async (c) => {
const pathname = c.req.path // `/about/me`
// ...
})