Janus Dependency를 설치하자.

https://janus.conf.meetecho.com/docs/js-modules.htm


Janus 시작하기

Janus 사용의 가장 중요한 것은 Janus Object를 생성하는 것이다.

사용할 처음부분에서 초기화하여 사용하자. (Janus.init 사용)

Janus.init({
   debug: true,
   dependencies: Janus.useDefaultDependencies(), // or: Janus.useOldDependencies() to get the behaviour of previous Janus versions
   callback: function() {
           // Done!
   }
});

Janus Object가 생성되었다면 세션을 생성해야한다.

각각 브러우저 탭마다 서버와 통신할 하나의 세션이 필요하다. (세션은 서로 다른 몇몇개의 Plugin Handler를 동시에 포함할 수 있다. ⇒ 같은 세션을 가진 같은 유저는 같거나 다른 Plugin으로 서로 다른 몇몇개의 WebRTC 세션을 사용할 수 있음을 의미한다.)

세션을 만드는 생성자는 아래와 같은 파라미터를 가질 수 있다.