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 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-vbt-cirrusmd-bridge-library

v0.1.3

Published

Library for CirrusMD SDK bridge

Readme

CirrusMD SDK Bridge Library

Library for CirrusMD SDK RN bridge, for both IOS and Android.

npm

Example Application

To run example app clone the project, run yarn (bob will install all deps), start the app with yarn example ios or yarn example android.

Usage

import VbtCirrusmdBridgeLibrary from 'react-native-vbt-cirrusmd-bridge-library'; //import Library

IOS

VbtCirrusmdBridgeLibrary.loginIos(sdkid, patientid, secret);
VbtCirrusmdBridgeLibrary.loadIosView()

Android

VbtCirrusmdBridgeLibrary.loginAndroid(sdkid, patientid.toString(), secret);
VbtCirrusmdBridgeLibrary.loadAndroidView()

Installation

npm install react-native-vbt-cirrusmd-bridge-library

IOS

For IOS you will need to add CirrusMD SDK in your project in order to work.

Adding CirrusMD SDK

Install Cocoapods: gem install cocoapods

Customize project podfile:

require_relative '../node_modules/react-native-unimodules/cocoapods.rb'
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/CirrusMD/podspecs.git'

Change platform version for IOS: platform :ios, '12.0'

In your app target add:

use_frameworks!
use_unimodules!
pod 'CirrusMDSDK','~> 6.2.0'
pod 'AwaitKit', '~> 5.2.0'
pod 'PromiseKit', '~> 6.13.1'

And in dependencies in package.json add next line: "react-native-unimodules": "~0.11.0"

Because we are using use_frameworks flag you should also disable flipper.

Run yarn to install all dependencies, run pod install in ios folder to update pods, run react-native run-ios to start app.

Android

In order to work on android you must:

In build.gradle (project level)

Change minimum SDK version minSdkVersion = 24 , build tools version classpath("com.android.tools.build:gradle:3.6.1"), and make sure you have next deps in allprojects -> repositories

maven { url "https://appboy.github.io/appboy-android-sdk/sdk" }
maven { url "http://tokbox.bintray.com/maven" }
google()
jcenter()
maven { url 'https://www.jitpack.io' }

Common build failed errors

Error with auto-linked libraries

ld: warning: Could not find or use auto-linked library 'swiftWebKit'
ld: warning: Could not find or use auto-linked library 'swiftCoreMIDI'
ld: warning: Could not find or use auto-linked library 'swiftUniformTypeIdentifiers'

Navigate to your ios folder and create File.swift file. You just need to have import Foundation on top.

The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0

Open IOS folder in xcode, go to build settings, search for IOS Deployment Target and set it to 12.

Error: Failed to install the app. Make sure you have the Android development environment set up

Make sure your ANDROID_SDK_PATH is set. If you don't have it just open yourApp/android folder in android studio and it should automatically add sdk.dir in local.properties.

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT