Module

x/kyuko/mod.ts>KyukoMiddleware

Fast and easy http framework for Deno Deploy 🦕
Latest
type alias KyukoMiddleware
import { type KyukoMiddleware } from "https://dotland.deno.dev/x/kyuko@v0.6.3/mod.ts";

A function that is invoked before the route handler is called. Hands over execution to the next middleware / route handler on return.

definition: () => Promise<unknown> | unknown