Preparation

Here’s what you will need to go through this codelab:

  1. An editor
  2. Node.js and its tooling
  3. Internet connection
  4. Good spirit

The repo

We host the codelab for the walkthough module of the course in this github repo: https://github.com/tsahilevi/webrtc-missing-codelab

You’re welcomed to fork and star our repo while there 😉

You can download the repo or clone it:

git clone [email protected]:tsahilevi/webrtc-missing-codelab.git

Once you have the code, you will need to get all the dependencies used in the Node.js application (which aren’t many). For that, we make use of npm:

cd webrtc-missing-codelab
npm install

Now you’re ready to run the server:

npm start

But we leave the explanation of that to the next lesson. See you there!

[]