Setup

So let's get started by setting up the basis for our WebRTC-powered phone app.

  1. First find a sensible place on your local file structure and run mkdir audio_app and then cd audio_app to create a directory to contain your app and enter into it.
  2. Next, create a new app by running yarn init. Follow the prompts, providing a name, version, description, etc. to your project.
  3. Next, install the required dependencies using the following commands: Peer will be used for the peer server and PeerJS will be used to access the PeerJS API and framework. Your package.json should something look like this when you've finished installing the dependencies:
    {
      "name": "audio_app",
      "version": "1.0.0",
      "description": "An audio app using WebRTC",
      "main": "server.js",
      "scripts": {
        "start": "node server.js",
        "test": "echo \"Error: no test specified\" && exit 1"
      },
      "keywords": [],
      "author": "Lola Odelola",
      "license": "MIT",
      "dependencies": {
        "express": "^4.17.1",
        "peer": "^0.5.3",
        "peerjs": "^1.3.1"
      }
    }
    
    If your file has `"main": "index.js"`, you'll want to change it so that it says `"main": "server.js"` instead so that it's pointing to the correct file.
  4. To finish the setup, you'll want to copy the following HTML and CSS files into the root of your project folder. You can name both files 'index', so the HTML file will be 'index.html' and the CSS file will be 'index.css'. You won't need to modify these much in the articles that follow.

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Build_a_phone_with_peerjs/Setup