Skip to main content
Module

x/oak/middleware.ts>Middleware

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
interface Middleware
import { type Middleware } from "https://deno.land/x/oak@v10.6.0/middleware.ts";

Middleware are functions which are chained together to deal with requests.

Type Parameters

optional
S extends State = Record<string, any>
optional
T extends Context = Context<S>

Call Signatures

(context: T, next: () => Promise<unknown>): Promise<unknown> | unknown