
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
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
FAQs
ConnectyCube chat and video chat JavaScript SDK
The npm package connectycube receives a total of 451 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.