I currently have an application that I've made in Flutter and wish to make a web application. This app listens to UDP data, decodes the information and displays it on a screen.
I understand that browsers cannot send UDP data. I do not care about this, I am only interested in listening to the data.
Research:
I understand that sockets.io is TCP only, therefor won't work with my app.
Looking at webRTC, it seems a possibility as it supports both TCP and UDP: Does WebRTC use TCP or UDP?
Would I be able to do what I want to with webRTC? Or is there some other library which would let me do this, or is it impossible?
Note: This web app listens to a local IP address of the user's network.