/Knowledge/sources/honojs__hono/llms-full/combine-middleware-usage-some--073d09b46e8f.md
Combine Middleware: Usage > some - hono-docs
Combine Middleware: Usage some Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt some Summary Runs the f...
Combine Middleware: Usage > some
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#some
Summary
Runs the first middleware that returns true. Middleware is applied in order, and if any middleware exits successfully, subsequent middleware will not run. ```ts import { some } from 'hono/combine' import { bearerAuth } from 'hono/bearer-...
Content
Runs the first middleware that returns true. Middleware is applied in order, and if any middleware exits successfully, subsequent middleware will not run.
import { some } from 'hono/combine'
import { bearerAuth } from 'hono/bearer-auth'
import { myRateLimit } from '@/rate-limit'
// If client has a valid token, skip rate limiting.
// Otherwise, apply rate limiting.
app.use(
'/api/*',
some(bearerAuth({ token }), myRateLimit({ limit: 100 }))
)
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#some",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Combine Middleware > Usage > some",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 271,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Combine Middleware: Usage > some",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}