Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 418 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 418 Bytes

this project is a vanilla webrtc poc for chrome and nodejs

first you need to create config.js file containing turnservers information like:

module.exports.turnservers = {
  turnservers: {
    iceServers: [{
      username: 'username',
      credential: 'password',
      url: 'turn:TURNSERVER_IP',
    }]
  }
};

then install deps npm i and run npm start

app is accessible at https://127.0.0.1:3002