Skip to main content
Module

x/kyuko/mod.ts>KyukoRequest

Fast and easy http framework for Deno Deploy 🦕
Latest
interface KyukoRequest
implements Request
import { type KyukoRequest } from "https://deno.land/x/kyuko@v0.6.3/mod.ts";

The request object that is handled in Kyuko applications. Can be extended further for middleware to populate the original Request.

Properties

params: Record<string, string>

Stores path parameters and their values in an object.

Stores query parameters and their values. Note that a single key may map to multiple different values.

path: string

Stores the sanitized path of the request, where leading and trailing slashes are stripped off accordingly.