How is it possible to guarantee delivery of messages using UDP on Node.js? For example, I could just resend the packet if it failed - but is there a way to identify when it
UDP is a protocol with no guaranteed delivery. If you want to guarantee, you should implement some protocol on top of UDP.