Comments on: Node.js and WebRTC go Together Like Peanut Butter and Chocolate https://bloggeek.me/nodejs-webrtc/ The leading authority on WebRTC Mon, 13 Apr 2020 13:30:44 +0000 hourly 1 By: Mohsun https://bloggeek.me/nodejs-webrtc/#comment-116629 Mon, 29 Feb 2016 18:49:55 +0000 http://bloggeek.me/?p=2224#comment-116629 In reply to Santosh.

I prefere to use asterisk and node js with ari-client package.

]]>
By: Tsahi Levent-Levi https://bloggeek.me/nodejs-webrtc/#comment-116628 Thu, 21 Jan 2016 13:54:24 +0000 http://bloggeek.me/?p=2224#comment-116628 In reply to Brian Pulito.

Thanks Brian

]]>
By: Brian Pulito https://bloggeek.me/nodejs-webrtc/#comment-116627 Thu, 21 Jan 2016 13:45:39 +0000 http://bloggeek.me/?p=2224#comment-116627 Hi Tsahi,

We just released an Rtcomm sample that only requires the Mosca MQTT broker running on Node.js along with angular-rtcomm. Instructions are on the angular-rtcomm page. I’m with you, Node.js and WebRTC are a perfect pair.

-Brian

]]>
By: Todd Morrison https://bloggeek.me/nodejs-webrtc/#comment-116626 Mon, 09 Nov 2015 01:06:18 +0000 http://bloggeek.me/?p=2224#comment-116626 In reply to Sam Dutton.

+1 for Sam. First hand account that his codelab is solid.

]]>
By: hanumesh https://bloggeek.me/nodejs-webrtc/#comment-116624 Mon, 10 Mar 2014 12:46:59 +0000 http://bloggeek.me/?p=2224#comment-116624 In reply to Chris Matthieu.

we are using node.js for signalling . Everyhting works great for a video conferencing solution without plugin.

]]>
By: Chris Matthieu https://bloggeek.me/nodejs-webrtc/#comment-116623 Tue, 17 Dec 2013 16:02:26 +0000 http://bloggeek.me/?p=2224#comment-116623 In reply to hanumesh.

Prior to starting @twelephone, I built (and sold) a Node.JS PaaS called Nodester. We supported web sockets on the platform and could handle approximately 1M web socket connections per AWS server. You can horizontally scale web sockets across multiple servers for the same site if needed by using Redis. In fact, Socket.io supports Redis scaling out of the box! https://github.com/LearnBoost/Socket.IO/wiki/Configuring-Socket.IO

Today’s developers are solving the signaling issue with one of these three technologies: websockets, xmpp/jingle, and sip. All of them are good choices. I happen to prefer websockets. If you use a websocket framework like socket.io, they handle fallback technologies for you automatically to run on all web browsers (http://davidwalsh.name/websocket).

Hope this helps…
Chris

]]>
By: hanumesh https://bloggeek.me/nodejs-webrtc/#comment-116622 Tue, 17 Dec 2013 09:06:35 +0000 http://bloggeek.me/?p=2224#comment-116622 In reply to Tsahi Levent-Levi.

Thanks for the reply. When i goggle i get to know that scalability(clustering) is an issue wrt to node.js when compared to openfire or ejabberd . Aslo , using the following link , http://stackoverflow.com/questions/9924822/scalability-issues-relating-to-socket-io . I found that websocket.io can handle max of 10,000 requests , what should we do if requests >10,000

]]>
By: Tsahi Levent-Levi https://bloggeek.me/nodejs-webrtc/#comment-116621 Tue, 17 Dec 2013 07:19:15 +0000 http://bloggeek.me/?p=2224#comment-116621 In reply to hanumesh.

Hanumesh,

Node.js is a server side technology – as such it has no limitation on the web browser side.
What you should be “concerned” about is probably the Socket.io side of the story, and its support is detailed here: http://socket.io/#browser-support

]]>
By: hanumesh https://bloggeek.me/nodejs-webrtc/#comment-116620 Tue, 17 Dec 2013 07:14:30 +0000 http://bloggeek.me/?p=2224#comment-116620 We are in a dilemma whether to use node.js or openfire for signalling. Is node.js supported by all web-browsers ,IE, Chrome, Mozilla, Safari and Opera .

]]>
By: Chris Matthieu https://bloggeek.me/nodejs-webrtc/#comment-116619 Fri, 01 Nov 2013 20:47:33 +0000 http://bloggeek.me/?p=2224#comment-116619 Twelephone is no longer using Holla. We are now using Phono (http://phono.com). You should give it a try. Their docs are also better.

]]>