Skip to main content
Module

x/mandarinets/deps.ts

Mandarine.TS is a typescript, decorator-driven framework that allows you to create server-side applications. Mandarine.TS provides a range of built-in solutions such as Dependency Injection, Components, ORM and more. Under its umbrella, Mandarine.TS has 4 modules: Core, Data, Security and MVC, these modules will offer you the requirements to build a Mandarine-powered application.
Latest
import * as mandarinets from "https://deno.land/x/mandarinets@v2.3.2/deps.ts";

Classes

A class which registers middleware (via .use()) and then processes inbound requests against that middleware (via .listen()).

Provides context about the current request and response to middleware functions.

An interface which allows setting and accessing cookies related to both the current request and response.

A class which provides an interface to access the fields of a multipart/form-data body.

An interface which provides information about the current request.

An interface to control what response will be sent when the middleware finishes processing the request.

An interface for registering middleware that will run when certain HTTP methods and paths are requested, as well as provides a way to parameterize parts of the requested path.

Enums

HTTP status codes

Functions

Asynchronously fulfill a response with a file from the local file system.

Interfaces

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