om-webrtc-backend

0.0.8 • Public • Published

OpenPaaS WebRTC module

Configuration

  1. This module uses webrtc node of config file.

    Here is a list of available options :

    • enabled : enable webrtc module (Boolean [default : undefined])
    • loglevel : specifies log level (String [default: "info"])
    • appIceServers : Array of STUN/TURN servers to use (Array [default: []])

    If enabled is undefined, webrtc module is disabled.

    If appIceServers is undefined, NAT traversal system is disabled.

  2. This module also provides an easyrtc generic connector which listens to these events emitted by easyrtc:

      AUTHENTICATE: 'authenticate',
      DISCONNECTION: 'disconnection',
      CONNECTION: 'connection',
      ROOM_CREATE: 'room:create',
      ROOM_JOIN: 'room:join',
      ROOM_LEAVE: 'room:leave',
      ICE_CONFIG: 'iceconfig'
    

Focus on Ice servers

STUN/TURN servers are used to allow NAT traversal. While STUN is used to resolve public ip addresses of peers, TURN act as a relay between two nated peers.

Here is an example of STUN/TURN servers definition :

  "appIceServers": [
          {"url": "stun:stun.example.com:3478"},
          {"url": "turn:turn.example.com:3478",
           "username": "username1",
           "credential": "key1"}
  ]

Even if you set only one server, it's preferable to provide, at least, one server of each kind.

Username and credential are mandatory for TURN but musn't be set for STUN servers.

For more informations about STUN/TURN, please refer to following link :

Dependencies (2)

Dev Dependencies (17)

Package Sidebar

Install

npm i om-webrtc-backend

Weekly Downloads

1

Version

0.0.8

License

AGPLv3

Last publish

Collaborators