A class representing a web application, extending the functionality of HttpServer.

Hierarchy

  • HttpServer
    • Application

Constructors

  • Constructs a new Application instance.

    Parameters

    • bindAddress: string

      The network address the server will bind to.

    • port: number

      The port number the server will listen on.

    Returns Application

Properties

errorMiddleware: AppErrorMiddleware
handler: RequestHandler
logger: Logger
requestHandlers: {
    method?: string;
    middleware: AppMiddleware;
    route: string;
}[]

Type declaration

server: TCP

The underlying TCP server.

Methods

  • Accepts the next client connection. When a client connects, it handles the client's request.

    Returns void

    Example

    // Accept and handle the next client
    httpServer.acceptNextClient();
  • Returns void

  • Internal method to handle incoming HTTP requests.

    Parameters

    • req: HttpRequest<Record<string, string>>

      The HttpRequest object.

    • res: HttpResponse

      The HttpResponse object.

    Returns HttpResponse

    The HttpResponse object after processing.

  • Registers a request handler for all HTTP methods on a specific route.

    Parameters

    • route: string

      The route pattern to match.

    • Rest ...middleware: AppMiddleware[]

      The handler function to execute.

    Returns void

Generated using TypeDoc