Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hono/helper.ts>Factory

Web Framework built on Web Standards
Extremely Popular
Go to Latest
class Factory
import { Factory } from "https://deno.land/x/hono@v4.3.7/helper.ts";

Constructors

new
Factory(init?: { initApp?: InitApp<E>; })

Type Parameters

optional
E extends Env = any
optional
P extends string = any

Properties

private
optional
initApp: InitApp<E>
createApp: () => Hono<E>
createHandlers: CreateHandlersInterface<E, P>
createMiddleware: <I extends Input = { }>(middleware: MiddlewareHandler<E, P, I>) => unknown