I've read a lot of documents about webRTC. Now I want to implement a sample application. I went through this useful stack overflow question.
And I got some client, a server in Javascript. I don't know how to start to see this demo . What are the steps should I take?
They explained like :
signaling technology: WebSockets
client: pure html/javascript
server: node.js, ws
last tested on: Firefox 40.0.2, Chrome 44.0.2403.157 m, Opera 31.0.1889.174
I understand this but I don't have much practical knowledge on this. These are my questions to setup this demo ?
- Should I have a
hosting account
? or can I use this with mylocalhost
? - Next , where should I done this
node.js, ws
? can I use withlinux machine
and installnpm
and run theserver.js
file on that ? - How can I start
client.js
code on my Linux machine ? - Only
server.js
andclient.js
file is required to setup this application ?