Seeka server side browser plugin

Delivers browser events and identities via Seeka server for delivering to server-side data destinations

Installation

Once the @seeka-labs private registry is configured, the below command can be ran to install the plugin.

NPM

npm install --save @seeka-labs/converge-plugin-seeka@latest

Yarn classic (v1)

yarn add @seeka-labs/converge-plugin-seeka@latest

Configuration

Add the plugin to your Converge configuration:

import { SeekaConvergeSdkPlugin } from "@seeka-labs/converge-plugin-seeka";

const converge = new ConvergeSdk({
  ...
  plugins: [
    ...
    new SeekaConvergeSdkPlugin()
  ],
});