Skip to main content
Module

x/endofunctor/types.ts>Vixeny

🌍 Vixeny: A runtime-agnostic, performance-centric library championing functional purity for modern web development.
Go to Latest
type alias Vixeny
import { type Vixeny } from "https://deno.land/x/endofunctor@v0.0.945/types.ts";

Options for the router, it is optional

import vixeny from "vixeny/fun"
import pettitions from "./someWhere"
vixeny({
 hasName: "http://127.0.0.1:8080/",
 404: r => new Response("Insert Not Found"),
 405: r => new Response("Insert Bad Method"),
 //default
 paramsStartsWith: ":"
})(...pettions)
definition: (o?: FunRouterOptions) => (routes: Petition[]) => (r: Request) => Promise<Response> | Response