
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@instana/react-native-agent
Advanced tools
Monitor React Native app end-user interactions with Instana
npm install --save @instana/react-native-agent
Android will require you to take 2 extra steps in order to support automatic tracking of network requests.
For React Native 0.63.3 or earlier, please use:
Add the Instana Android agent plugin to your dependencies via android/build.gradle
:
buildscript {
dependencies {
classpath "com.instana:android-agent-plugin:$INSTANA_ANDROID_PLUGIN_VERSION"
}
}
Apply the Instana Android agent plugin via android/app/build.gradle
file (at the top):
apply plugin: 'com.android.application'
apply plugin: 'com.instana.android-agent-plugin'
Your project needs to contain at least one Swift file (it can be empty). If you don't have any, please open your Xcode Project in <YourReactNativeProject>/ios
and add an empty Swift file. Please also let Xcode create the Bridging Header for you.
Please refer to our React Native API documentation.
We recommend adding http://localhost:8081
to the ignored URLs list to prevent the Agent from tracing communication with the Metro bundler:
Instana.setIgnoreURLsByRegex(["http:\/\/localhost:8081.*"]);
If your app uses fetch
to complete network requests, you might find your app crashing on runtime whenever fetch
is used after linking Instana React Native Agent : No virtual method toString(Z)Ljava/lang/String;
If you encounter this issue before the upstream issue is solved, please apply the following workaround. Add the following to your Android module-level gradle file (usually app/gradle.build
):
dependencies {
implementation "com.squareup.okhttp3:okhttp:4.3.1"
implementation "com.squareup.okhttp3:okhttp-urlconnection:4.3.1"
}
2.0.9
FAQs
Monitor React Native app end-user interactions with Instana
The npm package @instana/react-native-agent receives a total of 1,506 weekly downloads. As such, @instana/react-native-agent popularity was classified as popular.
We found that @instana/react-native-agent demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.