Skip to content

Latest commit

 

History

History
106 lines (72 loc) · 3.04 KB

File metadata and controls

106 lines (72 loc) · 3.04 KB
title
\@qwik.dev/qwik-router/middleware/aws-lambda API Reference

API › @qwik.dev/qwik-router/middleware/aws-lambda

createQwikCity

Warning: This API is now obsolete.

Use createQwikRouter instead. Will be removed in V3

createQwikCity: typeof createQwikRouter;

Edit this section

createQwikRouter

export declare function createQwikRouter(opts: AwsOpt): {
  fixPath: (pathT: string) => string;
  router: (
    req: import("http").IncomingMessage | import("http2").Http2ServerRequest,
    res: import("http").ServerResponse,
    next: import("@qwik.dev/router/middleware/node").NodeRequestNextFunction,
  ) => Promise<void>;
  staticFile: (
    req: import("http").IncomingMessage | import("http2").Http2ServerRequest,
    res: import("http").ServerResponse,
    next: (e?: any) => void,
  ) => Promise<void>;
  notFound: (
    req: import("http").IncomingMessage | import("http2").Http2ServerRequest,
    res: import("http").ServerResponse,
    next: (e: any) => void,
  ) => Promise<void>;
  handle: (req: any, res: any) => void;
};

Parameter

Type

Description

opts

AwsOpt

**Returns:**

{ fixPath: (pathT: string) => string; router: (req: import("http").IncomingMessage | import("http2").Http2ServerRequest, res: import("http").ServerResponse, next: import("@qwik.dev/router/middleware/node").NodeRequestNextFunction) => Promise<void>; staticFile: (req: import("http").IncomingMessage | import("http2").Http2ServerRequest, res: import("http").ServerResponse, next: (e?: any) => void) => Promise<void>; notFound: (req: import("http").IncomingMessage | import("http2").Http2ServerRequest, res: import("http").ServerResponse, next: (e: any) => void) => Promise<void>; handle: (req: any, res: any) => void; }

Edit this section

PlatformAwsLambda

export interface PlatformAwsLambda extends Object

Extends: Object

Edit this section

QwikCityAwsLambdaOptions

Warning: This API is now obsolete.

Use QwikRouterAwsLambdaOptions instead. Will be removed in V3

export type QwikCityAwsLambdaOptions = QwikRouterAwsLambdaOptions;

References: QwikRouterAwsLambdaOptions

Edit this section

QwikRouterAwsLambdaOptions

export interface QwikRouterAwsLambdaOptions extends ServerRenderOptions

Extends: ServerRenderOptions

Edit this section