Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@kameleoon/react-native-event-source

kameleoon-sdk1.6kISC1.1.0TypeScript support: included

Kameleoon React Native EventSource

kameleoon, react native, sdk, event source

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(),
  },
});