Socket
Book a DemoInstallSign in
Socket

ultravox-react-native

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ultravox-react-native

React Native client SDK for Ultravox

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

ultravox-client-sdk-react-native

React Native client SDK for Ultravox.

npm package

Installation

npm install ultravox-react-native

Usage

import { useUltravox } from 'ultravox-react-native';

// ...

  const { joinCall, leaveCall } = useUltravox();

  useEffect(() => {
    joinCall(joinUrl).catch((error) => {
      console.error('Failed to join call:', error);
    });

    return () => {
      leaveCall().catch((error) => {
        console.error('Failed to leave call:', error);
      });
    };
  }, [joinUrl, joinCall, leaveCall]);

See the included example app for a more complete example. To get a joinUrl, you'll want to integrate your server with the Ultravox REST API

Testing SDK Changes

This repo includes a basic example application that can be used with the SDK. To run it from the main directory:

npm install --force
cd example
npm run android
npm run start -- --tunnel

An Expo server will start, from which you can open an Android build on your connected device.

Publishing

  • Test using the example app.
  • Bump version in package.json.
  • npm publish --dry-run --git-checks=false
  • Open PR, get changes merged, then continue from main.
  • npm publish
  • Create a new Tag and Release on GitHub please.

Keywords

react-native

FAQs

Package last updated on 19 Dec 2025

Did you know?

Socket

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.

Install

Related posts