Skip to content

AntonioCuevaUrraco/nativescript-mixpanel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm npm

NativeScript Mixpanel

A NativeScript plugin to provide the ability to integrate with Mixpanel.

Installation

From your command prompt/terminal go to your app's root folder and execute:

tns plugin add nativescript-mixpanel

Usage

Angular Native (NativeScript Angular) Usage

In main.ts add the following before you bootstrap

import {MixpanelHelper} from "nativescript-mixpanel";
MixpanelHelper.init(YOUR_KEY_HERE);

API

import {MixpanelHelper} from "nativescript-mixpanel";
  • MixpanelHelper.init(token: any)
  • MixpanelHelper.track(eventName: any, props?: any)
  • MixpanelHelper.timeEvent(eventName: any)
  • MixpanelHelper.identify(id: any, extraAtributes?: any)
  • MixpanelHelper.registerSuperProperties(props: any)
  • MixpanelHelper.addPushDeviceToken(token: any)
  • MixpanelHelper.alias(alias: string)
  • MixpanelHelper.reset()
  • MixpanelHelper.flush()

Contributors

  • Antonio Cueva Urraco
  • Blake Nussey
  • Demetrio Filocamo