Skip to main content
Address - cluster - Node documentation
interface Address

Usage in Deno

import { type Address } from "node:cluster";
Deno compatibility

This symbol is a non-functional stub.

Properties

address: string
port: number
addressType:
4
| 6
| -1
| "udp4"
| "udp6"

The addressType is one of:

  • 4 (TCPv4)
  • 6 (TCPv6)
  • -1 (Unix domain socket)
  • 'udp4' or 'udp6' (UDPv4 or UDPv6)