
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
@dreamhorizonorg/raven-sdk-react-native
Advanced tools
React Native bridge for Raven: initialize the native Raven SDK on iOS and Android, manage user profile updates, and logout from JavaScript.
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
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.
package.json for your app).GoogleService-Info.plist where required (see example/ios docs).build.gradle (GitHub Packages / Maven as documented for Raven Android artifacts).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.
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();
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).
MIT — see LICENSE.
Made with create-react-native-library
FAQs
React Native bridge for Raven: initialize the native Raven SDK on iOS and Android, manage user profile updates, and logout from JavaScript.
We found that @dreamhorizonorg/raven-sdk-react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

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.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.