
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
connectycube
Advanced tools
ConnectyCube JavaScript SDK.
ConnectyCube is a messaging and video calling platform for iOS, Android and JavaScript apps.
Check our comprehensive guide for JavaScript SDK.
For more details check the ConnectyCube features page
Simply connect the JS file as a normal script (UMD):
<script src="https://cdn.jsdelivr.net/npm/connectycube@x.x.x/dist/connectycube.min.js"></script>
where x.x.x is the desired JS SDK version (check for Releases page for all available versions).
Then a window scoped variable called ConnectyCube
is created.
Or install the package as node_module:
npm install connectycube --save
And add script to HTML file from the 'node_modules' folder (as a relative path):
<script src="~/node_modules/connectycube/dist/connectycube.min.js"></script>
CommonJS:
const ConnectyCube = require('connectycube');
ES modules:
import ConnectyCube from 'connectycube';
const credentials = {
appId: 21,
authKey: 'A123210A-78AE-1DF9-9DD4-CC321AB6C189',
};
const config = {
debug: { mode: 1 },
};
ConnectyCube.init(credentials, config);
You be able to create more then one client instance:
const cubeSender = new ConnectyCube.ConnectyCube();
const cubeReceiver = new ConnectyCube.ConnectyCube();
cubeSender.init(credentials, config);
cubeReceiver.init(credentials, config);
See an example of simple application based on Webpack build
See more information at CONTRIBUTING.md
Apache 2.0
4.1.0
ConnectyCube.users.listOnline({limit?: number, offset?: number}): Promise<{users: array<User>}>;
FAQs
ConnectyCube chat and video chat JavaScript SDK
The npm package connectycube receives a total of 263 weekly downloads. As such, connectycube popularity was classified as not popular.
We found that connectycube demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.