Skip to main content
Module

x/hono/mod.ts>SmartRouter

Web Framework built on Web Standards
Extremely Popular
Go to Latest
class SmartRouter
implements Router<T>
import { SmartRouter } from "https://deno.land/x/hono@v4.2.7/mod.ts";

Constructors

new
SmartRouter(init: Pick<SmartRouter<T>, "routers">)

Properties

readonly
activeRouter
name: string
routers: Router<T>[]
optional
routes: [string, string, T][]

Methods

add(
method: string,
path: string,
handler: T,
)
match(method: string, path: string): Result<T>