Files
research/building-tools/udx-chat.md
T
2026-02-19 10:12:39 +00:00

271 B

UDX Low-Lat Chat Tutorial

Direct UDP

const udx = require('udx-native')
const socket = udx.createSocket('udp4')
socket.bind(0)

socket.on('message', msg => console.log(msg))
socket.send(targetPort, targetHost, 'hi')

w/ DHT: libudx base for hyperdht.