To get started, you will first need to edit public/index.html
to set your API key.
See the section marked IMPORTANT SETUP
, and change the placeholder YOUR_API_KEY
to be the API key you were provided.
You can retrieve your API key by visiting https://accounts.simplewebrtc.com.
npm install
- Edit
public/index.html
as described above. npm start
- Go to https://localhost:8080/
npm install
- Edit
public/index.html
as described above. npm run build
- Copy the contents of the
./dist
folder to your hosting location. - Ensure your hosting location is served via HTTPS.
Sound effects for peers joining/leaving, messages, and sound output testing can be configured.
Put your audio files into the /public
directory, and uncomment the desired <meta />
tags in /public/index.html
, setting the content
attribute to the URL of the audio file:
<meta name="simplewebrtc-sound-message-receive" content="/url-of-mp3-file" />
<meta name="simplewebrtc-sound-message-send" content="/url-of-mp3-file" />
<meta name="simplewebrtc-sound-peer-enter" content="/url-of-mp3-file" />
<meta name="simplewebrtc-sound-peer-exit" content="/url-of-mp3-file" />
<meta name="simplewebrtc-sound-test-output" content="/url-of-mp3-file" />