
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
reactnative_plugin_appice_apm
Advanced tools
react-native >= 0.65.0To install the package and setup your project:
npm install reactnative-plugin-appice-apm
How to use it:
import * as AppiceAPM from "reactnative-plugin-appice-apm";
const AppICE = require('reactnative-plugin-appice');
TestApm.init({
dsn: 'http://2c5a2359f47be35ac26ec806b5ad4f01@demoapm.appice.io/3',
tracesSampleRate: 0.0,
_experiments: {
profilesSampleRate: 1.0,
},
});
AppICE.getUserId((userID: any) => {
if (userID.length > 0) {
TestApm.setUser({ id: userID });
}
});
AppICE.getDeviceId((deviceID: any) => {
if (deviceID.length > 0) {
TestApm.setContext('device', {
id: deviceID,
});
}
});
AppiceAPM.setTag("myTag", "tag-value");
AppiceAPM.setExtra("myExtra", "extra-value");
AppiceAPM.captureMessage("Hello TestApm!");
AppiceAPM.captureException(Error);
inside android->app->build.gradle
apply from: "../../node_modules/reactnative-plugin-appice-apm/react-native/libapm.gradle"
just before
android {
}
FAQs
Official libapm SDK for react-native
We found that reactnative_plugin_appice_apm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.