Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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:
<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>
const ConnectyCube = require('connectycube');
or
import * as ConnectyCube from 'connectycube';
const credentials = {
appId: 21,
authKey: 'hhf87hfushuiwef',
authSecret: 'jjsdf898hfsdfk',
};
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
3.35.1
[Types] Second argument is optional in ConnectyCube.init(credentials, config)
(ConnectyCube.init(credentials: any, configMap: any): void
> ConnectyCube.init(credentials: any, configMap?: any): void
)
FAQs
ConnectyCube chat and video chat JavaScript SDK
The npm package connectycube receives a total of 121 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.