/audio-video-calling

Audio Video Calling Experiment

Primary LanguageJavaScript

audio-video-calling

Audio Video Calling Experiment

Set up

  1. Run npm install

  2. Install ssl on Node/Express

  3. Configure your ssl with your keys and pass phrase bin/www:24

var sslOptions = {
  key: fs.readFileSync('./key.pem'),
  cert: fs.readFileSync('./cert.pem'),
  passphrase: 'webRTC'
};

var server = https.createServer(sslOptions, app);
  1. Run npm install nodemon -g

  2. nodemon bin/www for watching changes and starting/restarting server