/Knowledge/sources/honojs__hono/llms-full/best-practices-head-request-best-practices-do-use-middleware-for-head-specific-logic--f02c91f21883.md
Best Practices: HEAD Request Best Practices > ✅ Do: Use Middleware fo...
Best Practices: HEAD Request Best Practices ✅ Do: Use Middleware for HEAD Specific Logic Source evidence: /Sources/honojs hono/provenance.md Canonical citati...
Best Practices: HEAD Request Best Practices > ✅ Do: Use Middleware for HEAD-Specific Logic
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#do-use-middleware-for-head-specific-logic
Summary
## Content
```typescript
// GOOD: Use middleware when HEAD needs different behavior
app.use('/api/resource', async (c, next) => {
await next()
// Add HEAD-specific headers after the handler
if (c.req.method === 'HEAD') {
c.header('X-HEAD-Processed', 'true')
// Don't compute expensive body content for HEAD
c.res = new Response(null, c.res)
}
})
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#do-use-middleware-for-head-specific-logic",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Best Practices > HEAD Request Best Practices > \u2705 Do: Use Middleware for HEAD-Specific Logic",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 83,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Best Practices: HEAD Request Best Practices > \u2705 Do: Use Middleware for HEAD-Specific Logic",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}