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

@dreamhorizonorg/raven-sdk-react-native

v0.1.0

Published

React Native bridge for Raven: initialize the native Raven SDK on iOS and Android, manage user profile updates, and logout from JavaScript.

Readme

@dreamhorizonorg/raven-sdk-react-native

React Native Turbo Module that bridges Raven to your app: initialize the native Raven stack on iOS and Android, call updateUserProfile, and logout from JavaScript with one API surface.

Repository: github.com/dream-horizon-org/raven-sdk-react-native

Features

  • initialize — Configure FCM/API endpoints and global props (user, device, app metadata).
  • updateUserProfile — Sync user profile fields with the backend.
  • logout — Clear session / tear down as implemented by the native SDKs.

Native work is delegated to raven-ios-sdk (CocoaPods) and the Android communications SDK; this package exposes a stable JS API and types.

Requirements

  • React Native 0.83+ (aligned with this repo’s dev dependency; check peer ranges in package.json for your app).
  • iOS: CocoaPods, Firebase / GoogleService-Info.plist where required (see example/ios docs).
  • Android: Gradle setup compatible with the library’s build.gradle (GitHub Packages / Maven as documented for Raven Android artifacts).

Installation

yarn add @dreamhorizonorg/raven-sdk-react-native
# or
npm install @dreamhorizonorg/raven-sdk-react-native

Follow native setup for iOS (pod install) and Android (Gradle repositories, google-services.json, etc.) using the example app and docs as reference.

Usage

import {
  initialize,
  updateUserProfile,
  logout,
} from '@dreamhorizonorg/raven-sdk-react-native';

await initialize({
  fcmBaseUrl: 'https://your-api.example.com/',
  apiKey: 'your-api-key',
  globalProps: {
    deviceId: 'device-123',
    appVersion: '1.0.0',
    appPackageName: 'com.example.app',
    userId: 'user-123',
  },
});

await updateUserProfile({
  userId: 'user-123',
  firstName: 'Jane',
  lastName: 'Doe',
});

await logout();

Publishing (maintainers)

Releases are automated with GitHub Actions when you push a tag raven-sdk-vMAJOR.MINOR.PATCH (see .github/workflows/publish.yml). The package is published to the npm registry as @dreamhorizonorg/raven-sdk-react-native (the name field in package.json).

Contributing

License

MIT — see LICENSE.


Made with create-react-native-library