
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
zego-zim-react-native
Advanced tools
$ npm install zego-zim-react-native --save
$ react-native link zego-zim-react-native
import ZIM from 'zego-zim-react-native';
// step1: create zim instance
var appID = 0;
var appSign = '';
ZIM.create({ appID, appSign });
var zim = ZIM.getInstance();
// step2: register callback function
zim.on('peerMessageReceived', function (zim, { messageList, info, fromConversationID }) {
console.log('peerMessageReceived', messageList, fromConversationID);
});
// step3: login
var userID = 'xxxx';
var loginConfig = { userName: 'xxxx', token: '' };
zim.login(userID, loginConfig)
.then(function () {
// success
})
.catch(function (err) {
// failed
});
// step4: send peer text message
var toUserID = 'xxxx1';
var config = {
priority: 1 // priority,low:1, medium:2, high:3
};
var messageTextObj = { type: 1, message: 'TEXT CONTENT' };
zim.sendMessage(messageTextObj, toUserID, 0, config)
.then(function ({ message }) {
// success
})
.catch(function (err) {
// failed
});
FAQs
Zego ZIM SDK for React Native
The npm package zego-zim-react-native receives a total of 190 weekly downloads. As such, zego-zim-react-native popularity was classified as not popular.
We found that zego-zim-react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 13 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.