Module

x/hono/router/trie-router/node.ts>Node

Ultrafast web framework for the Edges
Extremely Popular
Go to Latest
class Node
import { Node } from "https://dotland.deno.dev/x/hono@vv3.5.0-rc.1/router/trie-router/node.ts";

Constructors

new
Node(
method?: string,
handler?: T,
children?: Record<string, Node<T>>,
)

Properties

children: Record<string, Node<T>>
handlerSetCache: Record<string, HandlerSet<T>[]>
methods: Record<string, HandlerSet<T>>[]
name: string
order: number
patterns: Pattern[]

Methods

private
gHSets(
node: Node<T>,
method: string,
wildcard?: boolean,
): HandlerSet<T>[]
insert(
method: string,
path: string,
handler: T,
): Node<T>
search(method: string, path: string): Result<T> | null