API with NestJS #142. A video chat with WebRTC and React
Briefly

One solution would be for the first person to stream their camera feed to our server. Then, our application would pass this data to the other caller. Unfortunately, our application acting as a middleman could introduce a significant lag, especially if our server is far from the call participants. Fortunately, we can use WebRTC to connect our users directly without sending all of the data through our server. This improves performance and helps us achieve a smooth experience.
Let's start by capturing a stream from the local camera. To do that, we need to use the mediaDevices object...
Read at Marcin Wanago Blog - JavaScript, both frontend and backend
[
add
]
[
|
|
]