Skip to main content
Module

x/composium/mod.ts>createHandler

Powered by functional composition and the URL Pattern API, composium has become the most flexible routing framework in the world.
Go to Latest
function createHandler
import { createHandler } from "https://deno.land/x/composium@v0.0.5/mod.ts";

A curried function which takes Context class, mainHandlers, catchHandlers and finallyHandlers and returns in the end a Handler function which can be passed to listen.

createHandler(Ctx)(routeGet)(catchHandler)(finallyHandler)

Parameters

Context: new (
request: Request,
connInfo: ConnInfo,
state?: S,
) => C
optional
state: S