1.1.7 • Published 5 years ago

react-signalayer-player v1.1.7

Weekly downloads
177
License
MIT
Repository
github
Last release
5 years ago

react-signalayer-player

To go live and start displaying campaigns to users, you'll need to install Signalayer Player script on your site.

Installation

npm i react-signalayer-player --save

Usage

Inside of your application where you would be running Signalayer, insert SignalayerPlayer:

NOTE! Parameters projectId and API_KEY are the same values and it's always required.

import React from 'react';
import SignalayerPlayer from 'react-signalayer-player';

export class App extends React.Component {

  render () {
    // optional params
    const userData = {
        userId: "123",
        email: "user@email.com"
    };

    return (
      <div className="app">
        <SignalayerPlayer projectId="{API_KEY}" userData={userData} />
      </div>
    );
  }
}

API Usage

Player API is a developer interface to communicate your site's data to Signalayer. The API will help you set up custom triggers and personalize campaigns based on user data and actions.

Be sure to Install Signalayer Player on your site before using the API.

import { SignalayerAPI } from 'react-signalayer-player';
SignalayerAPI.show("campaign_id");

Find more information in our Developer Documentation

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago