Kameleoon React Native EventSource
Kameleoon React Native EventSource is a small helper package which provides default implementation for Kameleoon React Native SDK external Storage built on top of react-native-event-source-ts library.
For more information refer to Official Kameleoon Documentation
- npm - npm install @kameleoon/react-native-event-source
- yarn - yarn add @kameleoon/react-native-event-source
- pnpm - pnpm add @kameleoon/react-native-event-source
- bun - bun install @kameleoon/react-native-event-source
While using @kameleoon/javascript-sdk:
- Import KameleoonEventSource
- Instantiate and pass it to external SDK dependencies
``ts
import { KameleoonClient } from '@kameleoon/javascript-sdk';
import { KameleoonEventSource } from '@kameleoon/react-native-event-source';
const client = new KameleoonClient({
siteCode: 'my_site_code',
externals: {
eventSource: new KameleoonEventSource(),
},
});
``