Skip to main content
Module

x/fast/mod.ts

Small web framework with near-native performance.
Go to Latest
File
import { Application } from "./server/application.ts";export default () => new Application();export { Application } from "./server/application.ts";export { Context } from "./server/context.ts";export { compose, decode } from "./server/middleware.ts";export type { Middleware, NextFunction } from "./server/middleware.ts";