Files
showbridge-docs/src/content/docs/modules/net/udp/client.md
T
2026-03-26 18:09:38 -05:00

587 B

title, sidebar
title sidebar
UDP Client
label order
Client 1

The net.udp.client module sends messages to a the configured host and port. This module does not produce any messages and so using it as an input to a route would be pointless.

  • type: net.udp.client
  • params:
    • host: IP or FQDN to send message to
    • port: UDP port to send messages to

Example

setup up a UDP client that will send UDP packets to 127.0.0.1 on port 8888

- id: udpClient
  type: net.udp.client
  params:
    host: 127.0.0.1
    port: 8888