Skip to content

GhoulKingR/webrtc-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WebRTC article repo

GitHub repo for WebRTC Tutorial. You can check out the live site here: https://ghoulkingr.github.io/webrtc-project/

Structure

How this repo is structured:

├── LICENSE
├── README.md
├── finished-tutorial
│   ├── 1_within_a_page
│   │   ├── README.md
│   │   └── index.html
│   ├── 2_within_browser_across_pages
│   │   ├── README.md
│   │   ├── index.html
│   │   └── streamer.html
│   ├── 3_with_signal_server
│   │   ├── README.md
│   │   ├── client.html
│   │   ├── server
│   │   │   ├── index.js
│   │   │   ├── package-lock.json
│   │   │   └── package.json
│   │   ├── signalserverclass.js
│   │   └── streamer.html
│   └── index.html
└── start-tutorial
    ├── step-1
    │   └── index.html
    ├── step-2
    │   ├── index.html
    │   └── streamer.html
    └── step-3
        ├── index.html
        ├── server
        │   └── index.js
        └── streamer.html

11 directories, 21 files

There are three folders inside the start-tutorial folder for following the tutorial: step-1, step-2, and step-3, and three folders inside the finished-tutorial folder corresponding to completing the tutorial: 1_within_a_page, 2_within_browser_across_pages, and 3_with_signal_server.

Each folder in the finished-tutorial folder has instructions for running them.