Slit Camera (Web RTC)

HTML

<script src="https://simplewebrtc.com/latest-v2.js"></script> 
<video height="300" id="localVideo"></video>
<div id="remotesVideos"></div>

JavaScript

var webrtc = new SimpleWebRTC({
  // the id/element dom element that will hold "our" video
  localVideoEl: 'localVideo',
  // the id/element dom element that will hold remote videos
  remoteVideosEl: 'remotesVideos',
  // immediately ask for camera access
  autoRequestMedia: true
});

// we have to wait until it's ready
webrtc.on('readyToCall', function () {
  // you can name it anything
  webrtc.joinRoom('your awesome room name');
});