Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 770 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 770 Bytes

video-chat-app

A video calling web app built using webRTC.
(PS: Still in intial stage of development; trying different methods to implement the functionality)

Setup

  • Firebase cloud firestore

    • Create calls collection.

    • Initialize a new document with offer as a map:

      offer: {
         sdp: '',
         type: ''
      }
    • Create offerCandidates and answerCandidates as subcollections of the calls collection.

    • Initialize a new document inside offerCandidates and answerCandidates with the following fields.

      candidate: ''
      sdpMLineIndex: ''
      sdpMid: ''
  • Clone this repository

  • cd video-chat-app

  • Add your firebase config in main.js

  • Save and run npm run dev