audio-video-calling
Audio Video Calling Experiment
Set up
-
Run
npm install
-
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);
-
Run
npm install nodemon -g
-
nodemon bin/www
for watching changes and starting/restarting server