@bearnjs/rest
    Preparing search index...

    Interface ListenInfo

    Provides information about the server when it starts listening. ListenInfo

    interface ListenInfo {
        addresses: string[];
        nodeVersion: string;
        pid: number;
        platform: string;
        port: number;
        routes: Route[];
        timestamp: string;
    }
    Index

    Properties

    addresses: string[]

    The addresses the server is bound to.

    nodeVersion: string

    The version of Node.js the server is running on.

    pid: number

    The process ID of the server.

    platform: string

    The platform the server is running on.

    port: number

    The port number the server is listening on.

    routes: Route[]

    The routes available on the server.

    timestamp: string

    The timestamp when the server started.