
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@vivocha/react-native-vivocha
Advanced tools
Vivocha React Native SDK
Using npm:
npm install --save @vivocha/react-native-vivocha
npm install --save @vivocha/react-native-vivocha-shared-frameworks
or using yarn:
yarn add @vivocha/react-native-vivocha
yarn add @vivocha/react-native-vivocha-shared-frameworks
Add vivocha-sdk include in android/settings.gradle:
include ':vivocha-sdk'
project(':vivocha-sdk').projectDir = new File('../node_modules/@vivocha/react-native-vivocha/android/vivocha-sdk')
Add react-native-vivocha plugin in app.json
:
{
"expo": {
"plugins": [
"@vivocha/react-native-vivocha"
]
}
}
import Vivocha, { VivochaValues } from '@vivocha/react-native-vivocha';
const vivocha = Vivocha.instance;
const servId = Platform.select({
android: 'XXXXXXXXXXXXXXXXXXXXXXXX-XXXXXXXXXXXXX', // android entry point Service ID
ios: 'YYYYYYYYYYYYYYYYYYYYYYYY-YYYYYYYYYYYYY', // ios entry point Service ID
default: '',
});
vivocha
.start('YOUR_ACCT_ID', servId, {})
.then((res) => {
console.log('Vivocha connected result:', res);
})
.catch((err) => {
console.error('Vivocha connection error:', err);
});
// ...
FAQs
Vivocha React-Native Plugin
The npm package @vivocha/react-native-vivocha receives a total of 43 weekly downloads. As such, @vivocha/react-native-vivocha popularity was classified as not popular.
We found that @vivocha/react-native-vivocha demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 29 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.