Skip to main content
Module

x/fresh/src/server/context.ts>ServerContext

The next-gen web framework.
Extremely Popular
Go to Latest
class ServerContext
import { ServerContext } from "https://deno.land/x/fresh@1.2.0/src/server/context.ts";

Constructors

new
ServerContext(
routes: Route[],
islands: Island[],
staticFiles: StaticFile[],
renderfn: RenderFunction,
middlewares: MiddlewareRoute[],
app: AppModule,
notFound: UnknownPage,
error: ErrorPage,
plugins: Plugin[],
configPath: string,
jsxConfig: JSXConfig,
dev?: boolean,
routerOptions: RouterOptions,
)

Methods

This functions returns a request handler that handles all routes required by fresh, including static files.

Static Methods

fromManifest(manifest: Manifest, opts: FreshOptions): Promise<ServerContext>

Process the manifest into individual components and pages.