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-carnival

v4.1.1

Published

React Native wrapper for the Sailthru Mobile Android and iOS SDKs

Readme

React Native : Sailthru Mobile SDK

Wraps the native Sailthru Mobile SDK for React Native apps.

Installation

npm install react-native-sailthru-mobile --save

iOS

Open your Project's Xcode Project.

Drag into "Libraries" the following files from node_modules/react-native-sailthru-mobile:

  • RNSailthruMobile.h
  • RNSailthruMobile.m (Make sure this file's Target Membership is your main app's target)
  • RNSailthruMobileBridge.h
  • RNSailthruMobileBridge.m (Make sure this file's Target Membership is your main app's target)

Next, Install Sailthru Mobile iOS SDK from Cocoapods (add pod 'SailthruMobile' to your Podfile) or install the framework manually (SailthruMobile.framework can be obtained from node_modules/react-native-sailthru-mobile).

You will then need replace the code that creates your RCTRootView with the code below. This adds the SailthruMobile React Native modules to the root view.

#import "RNSailthruMobileBridge.h"

- (BOOL)application:(UIApplication * )application didFinishLaunchingWithOptions:(NSDictionary * )launchOptions {
      ...
      id<RCTBridgeDelegate> moduleInitialiser = [[RNSailthruMobileBridge alloc]
                                                 initWithJSCodeLocation:jsCodeLocation   // JS Code location used here should be same location used before
                                                 appKey:SDK_KEY];                        // Obtain SDK key from your Sailthru Mobile app settings

      RCTBridge * bridge = [[RCTBridge alloc] initWithDelegate:moduleInitialiser launchOptions:launchOptions];

      RCTRootView * rootView = [[RCTRootView alloc]
                                initWithBridge:bridge
                                moduleName:@"YOUR_MODULE_NAME"
                                initialProperties:nil];
      ...
}

Build and Run from Xcode.

Android

  • In android/settings.gradle
...
include ':react-native-sailthru-mobile'
project(':react-native-sailthru-mobile').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sailthru-mobile/android')
  • In android/app/build.gradle
...
repositories {
    google()

    maven {
        url "https://github.com/carnivalmobile/maven-repository/raw/master/"
    }
}

dependencies {
    ...
    compile project(':react-native-sailthru-mobile')
    compile 'com.sailthru.mobile.sdk:sailthru-mobile:10.1.+'
}
  • Register module (in MainApplication.java)
import com.reactlibrary.RNSailthruMobilePackage; // <--- import

public class MainApplication extends Application implements ReactApplication {
  ...

    @Override
    protected List<ReactPackage> getPackages() {
      return Arrays.<ReactPackage>asList(
          new MainReactPackage(),
          new RNSailthruMobilePackage(getApplicationContext(), // Should pass in application context
                                      SDK_KEY)                 // Obtain SDK key from your Sailthru Mobile app settings
      );
    }
  ...

    @Override
    public void onCreate() {
      super.onCreate();
      SoLoader.init(this, /* native exopackage */ false);
    }
  ...
}

}

Finally, make sure your compileSdkVersion is set to 26 or higher and buildToolsVersion is "26.0.2" or higher

Note: You may see an error about missing bundle on Android if you don't have the server running first. You an start the server by running react-native start and relaunch from Android Studio.

For push set up, follow the usual Android Integration documentation.

Example

We have provided an example JS file for both iOS and Android. Examples of the promises-based wrapper can be found there.