Node.js video chat application [closed]

2019-03-09 21:45发布

How would you implement a video chat application using node.js?

Any resources(tutorials, books, links) or a general gameplan/strategy would be greatly appreciated

2条回答
叼着烟拽天下
2楼-- · 2019-03-09 22:01

Right now there are two Node.js projects for video chat. Both are experimental, but I've heard they work quite well if you can get them running.

https://github.com/webRTC/webrtc.io-client => The current champ for chat.

https://github.com/kdomagal/Web-RTC => Only a demo app

查看更多
成全新的幸福
3楼-- · 2019-03-09 22:02

There is a Project that aims at these sorts of problems (http://www.webrtc.org/). I would probably stream the video to the server and then to the client, or wait til the P2P API is ready and then implement a P2P version if you have time to wait.

查看更多
登录 后发表回答