interface ListenOptions {
    backlog?: number;
    exclusive?: boolean;
    host?: string;
    ipv6Only?: boolean;
    path?: string;
    port?: number;
    readableAll?: boolean;
    writableAll?: boolean;
}

Properties

backlog?: number
exclusive?: boolean
host?: string
ipv6Only?: boolean

Default

false
path?: string
port?: number
readableAll?: boolean
writableAll?: boolean