blog

  • Home
  • blog
  • Creating a PhoneRTC Calling App – Server Side

Creating a PhoneRTC Calling App – Server Side

In the first part of this series we created the client side of our PhoneRTC application and in this article we create the server side that coordinates clients.

Signaling Server

The server-side component of the app is called the “signaling server”, as it’s used for exchanging information between peers.

Start by creating a new koler-server directory outside the www directory. Everything inside the www directory is packaged when building the app and we don’t want the server component included. Inside the new directory, open your terminal and install express, lodash and Socket.io as dependencies.

Continue reading %Creating a PhoneRTC Calling App – Server Side%

LEAVE A REPLY