/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-multiple-routers-33b38573d990-multiple-routers-s0010-c0000.md
Multiple routers - hono-docs
Multiple routers Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt multiple routers Summary Hono ha...
Multiple routers
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#multiple-routers
Summary
Hono has multiple routers. RegExpRouter is the fastest router in the JavaScript world. It matches the route using a single large Regex created before dispatch. With SmartRouter, it supports all route patterns. LinearRouter*...
Content
Hono has multiple routers.
RegExpRouter is the fastest router in the JavaScript world. It matches the route using a single large Regex created before dispatch. With SmartRouter, it supports all route patterns.
LinearRouter registers the routes very quickly, so it's suitable for an environment that initializes applications every time. PatternRouter simply adds and matches the pattern, making it small.