Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bandwidth/webrtc-sample-conference-node
Conferencing sample app for Node.js using Bandwidth WebRTC
https://github.com/bandwidth/webrtc-sample-conference-node
edgeservices example webrtc
Last synced: 3 months ago
JSON representation
Conferencing sample app for Node.js using Bandwidth WebRTC
- Host: GitHub
- URL: https://github.com/bandwidth/webrtc-sample-conference-node
- Owner: Bandwidth
- License: mit
- Created: 2020-01-29T17:19:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T00:44:23.000Z (over 1 year ago)
- Last Synced: 2024-04-14T06:09:01.566Z (10 months ago)
- Topics: edgeservices, example, webrtc
- Language: TypeScript
- Homepage:
- Size: 15.1 MB
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Conferencing sample app for Node.js using Bandwidth WebRTC
To run this sample, you'll a Bandwidth phone number, Voice API credentials and WebRTC enabled for your account. Please check with your Bandwidth Account Manager to ensure you are provisioned for WebRTC.
This sample will need to be publicly accessible to the internet in order for Bandwidth API callbacks to work properly. Otherwise you'll need a tool like [ngrok](https://ngrok.com) to provide access from Bandwidth API callbacks to localhost.
**Unless you are running on `localhost`, you will need to use HTTPS**. Most modern browsers require a secure context when accessing cameras and microphones.
Note that this sample currently works best in Chrome.
## Create a Bandwidth Voice API application
Follow the steps in [How to Create a Voice API Application](https://support.bandwidth.com/hc/en-us/articles/360035060934-How-to-Create-a-Voice-API-Application-V2) to create your Voice API appliation.
In steps 7 and 8, make sure they are set to POST.
In step 9, for **Call initiated callback URL**, provide the publicly accessible URL of your sample app. You need to add `/callback/incoming` to the end of this URL in the Voice Application settings.
You do no need to set a callback user ID or password.
Create the application and make note of your _Application ID_.
## Pull the source for this sample app
This git repo uses a submodule for the /frontend code, so when you clone this repo, please make sure you use the --recursive flag, like this, (from a bash terminal):
```bash
$ git clone --recursive https://github.com/Bandwidth/webrtc-sample-conference-node.git
```Then go into your new repo directory:
```bash
$ cd webrtc-sample-conference-node
```## Configure your sample app
Copy the default configuration file to make your own configuration file for the required environment variables:
```bash
cp .env.default .env
```Add your Bandwidth account settings to `.env`:
* ACCOUNT\_ID
* BW_USERNAME
* BW_PASSWORD* WEBRTC_HTTP_SERVER_URL (Customer API URL, which defaults to `https://api.webrtc.bandwidth.com/v1`. Optionally override if you want to use your personal stack instead, i.e. `https://sife6x5c6l.execute-api.us-east-1.amazonaws.com/v1`)
* WEBRTC_DEVICE_URL (Device Websocket API URL, which defaults to `wss://device.webrtc.bandwidth.com`. Optionally override if you want to use your personal stack instead, i.e. `wss://t7b04iwatb.execute-api.us-east-1.amazonaws.com`)
* CALLBACK\_URL (the publicly accessible URL for your app, i.e. ngrok URL, with no trailing slash)Add your Voice Application settings to `.env`:
* VOICE\_NUMBER (Bandwith phone number associated with the Voice Application in [E.164 format](https://www.bandwidth.com/glossary/e164/))## Install dependencies and build
```bash
npm install
npm start
```### Start a conference
Browse to [http://localhost:3000](http://localhost:3000) and start a conference.(Note: If you want to use a different port number, add a PORT={port number you want to use} to your .env file or otherwise as an environment variable.)
You should now be able to dial into your phone number, punch in your conference code, and be connected to your conference.