@kameleoon/react-native-event-source
v1.0.1
Published
Kameleoon React Native EventSource
Downloads
1,137
Readme
Kameleoon React Native EventSource
Introduction
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
Contents
Installation
- 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
Configuration
While using @kameleoon/javascript-sdk
:
- Import
KameleoonEventSource
- Instantiate and pass it to external SDK dependencies
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(),
},
});