Example

USERDIVE Integration example

github.com

userdive plugin create sample

CircleCI

export class MyPlugin {
    constructor(tracker) {
        this.tracker = tracker;
    }
    echoId() {
        const element = document.getElementById("app");
        element.innerHTML = `<p>linkerParam: ${this.tracker.get(
            "linkerParam"
        )}</p>`;
    }
}

agent.js Examples

Third-party Integration

USERDIVE

USERDIVE Integration example