npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ngx-mixpanel

v0.9.3

Published

Directive for the easier use of the Maxpanel service event tracking

Downloads

1,075

Readme

Ngx-mixpanel

This library was generated with Angular CLI version 10.0.6.

Compatibilidad

Angular 10+

Instalación

npm i ngx-mixpanel --save

npm i mixpanel-browser --save

Agregar al app.module de tu proyecto

Remplazar Token project from Mixpanel por el token que se genera al registrate en mixpanel y crear un proyecto allí.

import { NgxMixpanelModule } from 'ngx-mixpanel';

@NgModule({
...
  import: [
  NgxMixpanelModule.withOptions({
  token: 'Token project from Mixpanel',
    }),
  ]
...
})

Uso de la directiva dentro del proyecto

Cuando desees capturar el evento de una etiqueta de html cuando le hagan click (en su frencuencia son botones pero puede ser cualquiera) solo agrega la directiva mixPanelEvent el cual recibe un objeto:

mixPanelEvent: 'Nombre del evento que quiereas restrear, tú le pones el nombre',

mixPanelProp: { } //Un objeto opcional que puedes agregarle la cantidad de atributos que desees, los cuales puedan ayudar a describir mejor la acción del evento

Ejemplo

 <button mixPanelEvent="My evento"  [mixPanelProp]="{'click': 'usuario presionó un botón'}"> Esto es un botón </button>

Eventos especiales

Hay dos eventos únicos dentro de mix panel, los cuales determinan cuando un usuario inicia sesión en la herramienta login o cuando el usuario cierra su sesión logout, esto con el fin de realizar las medicionas de uso de su proyecto.

Ejemplo login

Al enviar el evento con el nombre login se requiere un atributo adiciona el cual es userEmail el cual debes proporcionar el correo del usuario o en su defecto un identificador de usuario el cual deberás usar de aquí en adelante.

<button mixPanelEvent="login" [mixPanelProp]="{'click': 'usuario ingresó a la herramienta'}" userEmail="[email protected]"> Ingresar </button>
 

Ejemplo logout

<button mixPanelEvent="logout" [mixPanelProp]="{'click': 'usuario cerró sesión'}"> Salir </button>

Servicio

En caso de que necesites usar las funciones de tracking de mixpanel dentro de tu componente en su typescript puedes injertar el siguiente servicio al constructor de tu componente.

import { NgxMixpanelService } from 'ngx-mixpanel';

...
constructor(private mixPanelService: NgxMixpanelService) {}

El servicio contiene los siguiente métodos:

login

Recuerda que el evento de login recibe el correo del usuario, o en su defecto un identificador único.

this.mixPanelService.login('[email protected]');

logout

this.mixPanelService.logout();

eventRegister

Recibe el nombre del evento, el path desde donde se ejecuta este y otro parámetro opcional (un Objeto) que puedes agregarle la cantidad de atributos, los cuales puedan ayudar a describir mejor la acción del evento.

this.mixPanelService.eventRegister('My evento', '/ruta/componente' , {detalles: 'Es un evento personalizado' })

 

Mixpanel

Ahora al capturar eventos podrás diseñar dashboards con los reportes que necesites, para más información del uso de Mixpanel puedes visitar: https://developer.mixpanel.com/

Ayuda

Para obtener información del uso de angular use ng help o dirígete al enlace Angular CLI Overview and Command Reference web.

Autor

César Bustos

2021