WebRTC Data Channel server to clients UDP communication. Is it currently possible?

Is it possible to use WebRTC Data Channels on Node.js in a way that mimics the functionality of WebSockets except using UDP?

In essence I want to have a server running Node.js with which browser clients can establish a full duplex bi directional UDP connection via JavaScript.

My question is the same as this one from 8 months ago. I repost it because the only answer was :

Yes, in theory you should be able to to do this. However, you’ll need a node module that supports WebRTC data channels, so that you can connect to it like any other peer. Unfortunately, scanning through the current modules, I don’t see one that implements the data channel.

Any of you know of such a module ? In my search I found some node modules with the words “webrtc” and “datachannel”, but they didn’t look like what was needed, they looked like they were meant for specific needs.

Read more here: Source link