I am trying to get the simple audio/video demo to work within my website but am running into issue due mainly to a lack of understanding on how the easyRTC server instance works/runs/listens
i first downloaded node.js after following the installation instructions ib the easyRTC documentation, but im not sure if i actually need it to run easyRTC.
basically i have a website in a windows 8 server setup in IIS such as
myweburl.co.uk/ which is on port 80. i created a directory called easyrtc in the root of this website and put the demo files from easyRTC there.
i ran npm install from windows command prompt which created the node_modules without error.
i then modified demo_audio_video_simple.html so that the easyrtc,js and socket-io.js files were properly reference relatively from my web site root ie
<script type="text/javascript" src="/easyrtc/node_modules/easyrtc/api/easyrtc.js"></script>
i also add
to the connect function as explained in the documentation
i then enter command prompt in windows and run
im not sure if im even supposed to do this?
if i browse to the demo page from my desktop PC at home (the website itself is running on a hosted server) i see the page fine and it connects to my camera fine but then i get an UNDEFINED error, nothing more nothing less.
im assuming this has something to do with the fact i havent set up easyrtc server properly. do i need to do the node bit at all or should i be running server.js somehow in IIS, if so how?
any help on this at all would be most appreciated