Skip to main content
Module

x/cav/endpoints.ts>ResolveArg

A server framework for Deno
Go to Latest
interface ResolveArg
import { type ResolveArg } from "https://deno.land/x/cav@0.0.23/endpoints.ts";

Arguments available to the Resolve function.

Type Parameters

optional
GroupsOutput = any
optional
Ctx = any
optional
QueryOutput = any
optional
MessageOutput = any

Properties

req: Request

The Request being handled.

res: ResponseInit & { headers: Headers; }

A ResponseInit applied to the Endpoint response after resolving and packing the value to send to the client. The Headers object is always available.

url: URL

new URL(req.url)

conn: http.ConnInfo

Connection information provided by Deno.

cookies: CookieJar

The CookieJar created after the Endpoint matched with the Request.

path: string

The path that matched the Endpoint's path schema option.

groups: GroupsOutput

The parsed path groups captured while routing the request.

ctx: Ctx

The Context created after the Endpoint matched the Request.

The parsed query string parameters.

message: MessageOutput

The parsed Request body, if any.

asset: (opt: ServeAssetOptions) => Promise<Response>

Returns a Response created using an asset from an assets directory.

redirect: (to: string, status?: number) => Response

Returns a redirect Response. If the redirect path doesn't specify an origin, the origin of the current request is used. If the path starts with a ".", it is joined with the pathname of the Request url to get the final redirect path. The default status is 302.