Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

connectycube

Package Overview
Dependencies
Maintainers
1
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connectycube - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

src/videocalling_conference/cubeVideoCallingConference.js

5

package.json
{
"name": "connectycube",
"description": "ConnectyCube JavaScript SDK",
"version": "1.1.0",
"version": "1.2.0",
"homepage": "https://connectycube.com/developers/#/Javascript/",

@@ -46,3 +46,4 @@ "main": "src/cubeMain.js",

"sdp-transform": "^2.4.1",
"strophe.js": "1.2.12"
"strophe.js": "1.2.12",
"fbemitter": "^2.1.1"
},

@@ -49,0 +50,0 @@ "devDependencies": {

8

src/cubeConfig.js
'use strict';
var config = {
version: '1.1.0',
version: '1.2.0',
creds: {

@@ -32,9 +32,9 @@ appId: '',

{
'url': 'stun:stun.l.google.com:19302'
'urls': 'stun:stun.l.google.com:19302'
},
{
'url': 'stun:turn.connectycube.com'
'urls': 'stun:turn.connectycube.com'
},
{
'url': 'turn:turn.connectycube.com:5349',
'urls': 'turn:turn.connectycube.com:5349',
'username': 'connectycube',

@@ -41,0 +41,0 @@ 'credential': '4c29501ca9207b7fb9c4b4b6b04faeb1'

@@ -52,10 +52,16 @@ 'use strict';

if( Utils.isWebRTCAvailble() ) {
// p2p calls client
var WebRTCClient = require('./videocalling/cubeWebRTCClient');
this.videochat = new WebRTCClient(this.service, this.chat.connection);
this.chat.webrtcSignalingProcessor = this.videochat.signalingProcessor;
// conf calls client
this.videochatconference = require('./videocalling_conference/cubeVideoCallingConference');
} else {
this.videochat = false;
this.videochatconference = false;
}
} else {
this.videochat = false;
this.videochatconference = false;
}

@@ -156,3 +162,3 @@

CB.ConnectyCube = ConnectyCube;
module.exports = CB;

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc