
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.
kumulos-react-native
Advanced tools
Official SDK for integrating Kumulos services with your React Native projects
Kumulos provides tools to build and host backend storage for apps, send push notifications, view audience and behavior analytics, and report on adoption, engagement and performance.
npm install kumulos-react-native --save
pod install --project-directory=ios
You must add the following to your android/app/build.gradle file:
android {
// ...
packagingOptions {
exclude 'META-INF/NOTICE'
exclude 'META-INF/ASL2.0'
exclude 'META-INF/LICENSE'
}
}
After installation & linking, you can now initialize the SDK with:
In your App.js:
import Kumulos from 'kumulos-react-native';
Kumulos.initialize({
apiKey: 'YOUR_API_KEY',
secretKey: 'YOUR_SECRET_KEY',
});
In your ios/AppDelegate.m application:didFinishLaunchingWithOptions: method:
#import <KumulosReactNative/KumulosReactNative.h>
...
KSConfig* kumulosConfig = [KSConfig
configWithAPIKey:@"YOUR_API_KEY"
andSecretKey:@"YOUR_SECRET_KEY"];
[KumulosReactNative initializeWithConfig:kumulosConfig];
In your android/app/src/main/java/.../MainApplication.java onCreate method:
import com.kumulos.android.KumulosConfig;
import com.kumulos.reactnative.KumulosReactNative;
...
KumulosConfig.Builder kumulosConfig = new KumulosConfig.Builder("YOUR_API_KEY", "YOUR_SECRET_KEY");
KumulosReactNative.initialize(this, kumulosConfig);
For more information on integrating the React Native SDK with your project, please see the Kumulos React Native integration guide.
Pull requests are welcome for any improvements you might wish to make. If it's something big and you're not sure about it yet, we'd be happy to discuss it first. You can either file an issue or drop us a line to support@kumulos.com.
This project is licensed under the MIT license with portions licensed under the BSD 2-Clause license. See our LICENSE file and individual source files for more information.
| RN Version | SDK Version | Docs |
|---|---|---|
| >= 0.60 | 8.x, 7.x, 6.x, 5.x, 4.x | Docs |
| >= 0.59 && < 0.60 | 3.0.0 | Docs |
| >= 0.46 && < 0.59 | 2.1.0 | Docs |
FAQs
Official SDK for integrating Kumulos services with your React Native projects
The npm package kumulos-react-native receives a total of 4 weekly downloads. As such, kumulos-react-native popularity was classified as not popular.
We found that kumulos-react-native demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
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.