npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-telehealth

v0.2.0

Published

React native webrtc VoIP module

Downloads

2

Readme

Logo

React Native Telemedicine Platform

A video conferencing tool allowing you to easily support remote telemedicine services for youre health practice and/or hospital.

The platform is supports the Elsa Health AI Technology, allowing your healthcare providers to access accurate decision support and epidemiological profiling for many regions across the world. Treat your patients, wherever they are, with the best care possible.

Badges

Apache-2.0 License React Native Telehealth Version

Installation

Install my-project with npm or yarn (tested with yarn)

First install the dependencies of the project:

    # To handle animations, gestures and interactions
    yarn add react-native-reanimated react-native-gesture-handler

    # For the swipe up module to reveal symptom intake and Elsa AI
    yarn add @gorhom/bottom-sheet@^4

    # To handle webrtc connections and power the video/audio calls
    yarn add react-native-webrtc

NOTE: For additional information on how to set up the dependecies, for both android an ios refer to the respective documentation:

Install this package

  yarn add react-native-telehealth

Usage/Examples

import * as React from 'react';
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import Telehealth from 'react-native-telehealth';
import type { RTCPeerConnectionConfiguration } from 'react-native-webrtc';

// Assuming you have a environment variables set up not to leak any private keys
import { STUN_URL, TURN_URL, TURN_USERNAME, TURN_PASSWORD } from '@env';

const configuration: RTCPeerConnectionConfiguration = {
    iceServers: [
        { urls: [STUN_URL] },
        {
            urls: [TURN_URL as string],
            username: TURN_USERNAME,
            credential: TURN_PASSWORD,
        },
    ],
};

function App() {
  return (
    <GestureHandlerRootView>
	  <Telehealth
		isPatient={false}
		isClinician={true}
		connectiongConfig={configuration}
		callRef={callRef}
	  />
    </GestureHandlerRootView>
  )
}

Deployment

#####TODO: Add docs for:

  • [ ] Links and resources for setting up a STUN & TURN server

  • [ ] Setting up configurations for the

FAQ

#####TODO: Add FAQ's

Installation does not work

This is a very new package, there are breaking changes and incomplete features, please help improve the package by filing new issues and requesting new features.

License

Apache 2.0