1.0.0 • Published 3 months ago

@kameleoon/react-native-event-source v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 months ago

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