
Security News
pnpm 11.10 Hardens Registry Authentication to Block Token Redirection
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.
@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.
The npm package @dreamhorizonorg/raven-sdk-react-native receives a total of 10 weekly downloads. As such, @dreamhorizonorg/raven-sdk-react-native popularity was classified as not popular.
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
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.

Security News
/Research
Socket uncovered 17 malicious npm and PyPI packages typosquatting Paysafe, Skrill, and Neteller SDKs to steal developer secrets.

Security News
Node.js is debating whether AI-driven security report volume warrants moving more vulnerability reports into public workflows.