@gibme/multicast
v22.0.0
Published
A simple multicast helper
Maintainers
Readme
@gibme/multicast
A cross-platform multicast/unicast UDP socket library for Node.js (>=22). It abstracts platform-specific details across Windows, Linux, and macOS for IPv4/IPv6 multicast group management, providing a unified EventEmitter-based interface.
Documentation
Full TypeDoc API documentation: https://gibme-npm.github.io/multicast
Features
- IPv4 and IPv6 multicast group support
- Cross-platform: Windows, Linux, and macOS
- Async factory-based creation with full TypeScript types
- Multicast and unicast message sending
- Automatic multi-interface handling:
- One shared multicast socket bound to
0.0.0.0/::for group traffic - One dedicated unicast socket per network interface for reliable multi-interface send/receive
- One shared multicast socket bound to
- Bind to all interfaces, a specific IP address, or a named interface (e.g.
eth0) - Configurable TTL and multicast loopback
- Partial-failure collection on send (
Promise.allSettledsemantics) fromSelfflag on received messages to identify self-originated traffic
Installation
npm install @gibme/multicast
# or
yarn add @gibme/multicastQuick Start
import { MulticastSocket } from '@gibme/multicast';
const socket = await MulticastSocket.create({
port: 5959,
multicastGroup: '224.0.0.251',
loopback: true
});
socket.on('message', (message, local, remote, fromSelf) => {
console.log({ message: message.toString(), local, remote, fromSelf });
});
const errors = await socket.send(Buffer.from('Hello World'));
if (errors.length > 0) {
console.error('Send failed on some interfaces:', errors);
}
// when done
await socket.destroy();How It Works
When you create a MulticastSocket, the library sets up:
- One multicast socket bound to
0.0.0.0(IPv4) or::(IPv6), joined to the specified multicast group on every selected interface. This socket receives all group traffic. - One unicast socket per network interface, each bound to that interface's address. These handle outgoing sends so that each interface transmits independently.
When you call send(), the message goes out on every unicast socket (unless you specify srcAddress). If any individual interface fails, the error is collected and returned — the remaining interfaces still send successfully.
The socket type (udp4 / udp6) is detected automatically from the multicastGroup address.
API
MulticastSocket.create(options): Promise<MulticastSocket>
Async factory that creates, binds, and returns a new socket.
Options
| Option | Type | Default | Description |
|---|---|---|---|
| port | number | (required) | The local port to bind to. |
| multicastGroup | string | (required) | The multicast group address to join (e.g. '224.0.0.251'). |
| host | string \| Address4 \| Address6 | all interfaces | The local address or interface name to bind to. If omitted, all available interfaces are used. When an IP address is provided, only the matching interface is used. When an interface name is provided (e.g. 'eth0'), all addresses on that interface are used. |
| loopback | boolean | false | When true, the socket receives its own outgoing multicast packets via the 'message' event (with fromSelf set to true). |
| reuseAddr | boolean | true | Enables SO_REUSEADDR on the socket. |
| reusePort | boolean | false | Enables SO_REUSEPORT on the socket (implicitly sets exclusive to true). |
| exclusive | boolean | false | When true, the socket handle is not shared with cluster workers. |
socket.send(message, options?): Promise<Error[]>
Sends a message to the multicast group or a unicast destination. Returns an array of errors for any interfaces that failed (empty on full success). Partial failures do not prevent delivery on other interfaces.
Send Options
| Option | Type | Default | Description |
|---|---|---|---|
| useMulticastSocket | boolean | false | Send via the shared multicast socket instead of per-interface unicast sockets. |
| srcAddress | string \| Address4 \| Address6 | all interfaces | Send from a specific interface only. |
| dstAddress | string \| Address4 \| Address6 | multicastGroup | Override the destination address (e.g. for unicast replies). |
| dstPort | number | port | Override the destination port. |
socket.destroy(): Promise<void>
Closes all underlying sockets, drops multicast group membership, and removes all event listeners from both the internal sockets and this instance. This is the recommended way to fully tear down a socket.
socket.close(): Promise<void>
Closes all underlying sockets and drops multicast group membership but does not remove event listeners. Prefer destroy() for full cleanup.
socket.setTTL(ttl: number): void
Sets both the unicast TTL and multicast TTL on the underlying multicast socket.
socket.setMulticastLoopback(loopback: boolean): void
Sets or clears the IP_MULTICAST_LOOP socket option at runtime.
socket.ref(): void
Adds all underlying sockets back to the Node.js event loop reference count (the default). The process will not exit while the sockets are open.
socket.unref(): void
Removes all underlying sockets from the Node.js event loop reference count, allowing the process to exit while the sockets are still open.
Properties
| Property | Type | Description |
|---|---|---|
| socket.addresses | string[] | The resolved interface addresses (without CIDR prefix). |
| socket.interfaces | (Address4 \| Address6)[] | The resolved network interfaces as parsed IP address objects. |
| socket.addressInfo | AddressInfo[] | Address info for all underlying sockets (multicast + unicast). |
| socket.options | MulticastSocket.Options | The options used to create this socket. |
Events
All events pass the local: AddressInfo of the socket that triggered them.
| Event | Arguments | Description |
|---|---|---|
| message | (message: Buffer, local: AddressInfo, remote: RemoteInfo, fromSelf: boolean) | A UDP message was received. fromSelf indicates whether the message originated from this instance. |
| close | (local: AddressInfo) | An underlying socket was closed. |
| connect | (local: AddressInfo) | An underlying socket connected. |
| error | (error: Error, local?: AddressInfo) | An underlying socket encountered an error. |
Helper Exports
The library re-exports Address4 and Address6 from the ip-address package and provides utility functions:
import {
MulticastSocket,
Address4,
Address6
} from '@gibme/multicast';
import {
detect_type,
get_addresses,
is_valid_ip,
compare_IP_addresses
} from '@gibme/multicast/helpers';| Function | Description |
|---|---|
| detect_type(address) | Returns 'udp4' or 'udp6' for the given IP address string or object. Throws on invalid input. |
| get_addresses(type, name?) | Returns all non-internal network addresses on the system matching the socket type, with CIDR prefixes. Optionally filter by interface name. |
| is_valid_ip(address) | Returns an Address4 or Address6 if valid, undefined otherwise. |
| compare_IP_addresses(a, b) | Numeric comparator for sorting IP addresses (usable with Array.sort()). |
Examples
Listen on a specific interface
const socket = await MulticastSocket.create({
port: 5959,
multicastGroup: '224.0.0.251',
host: '192.168.1.100'
});Listen on a named interface
const socket = await MulticastSocket.create({
port: 5959,
multicastGroup: '224.0.0.251',
host: 'eth0'
});IPv6 multicast
const socket = await MulticastSocket.create({
port: 5959,
multicastGroup: 'ff02::1',
loopback: true
});Send to a specific unicast destination
const errors = await socket.send(Buffer.from('Hello'), {
dstAddress: '192.168.1.50',
dstPort: 9000
});Send from a specific interface
const errors = await socket.send(Buffer.from('Hello'), {
srcAddress: '192.168.1.100'
});Error handling
socket.on('error', (error, local) => {
console.error(`Error on ${local?.address}:${local?.port}:`, error.message);
});
const errors = await socket.send(Buffer.from('Hello'));
for (const err of errors) {
console.warn('Partial send failure:', err.message);
}Allow process to exit while socket is open
socket.unref();License
MIT
