Popularity
1.3
Stable
Activity
0.0
Stable
6
1
2

Monthly Downloads: 10
Programming language: Elixir
License: MIT License
Tags: Third Party APIs    

mixpanel alternatives and similar packages

Based on the "Third Party APIs" category.
Alternatively, view mixpanel alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of mixpanel or a related project?

Add another 'Third Party APIs' Package

README

MixpanelEx

An Elixir client for the Mixpanel HTTP API. See mixpanel.com.

Usage

1) Add mixpanel to your deps:

{:mixpanel, "0.0.1"}

2) Add :mixpanel to the list of application dependencies in your mix.exs.

  def application do
    [applications: [:logger, :mixpanel]]
  end

3) Add your mixpanel token to your config/config.exs (or similar):

config :mixpanel, token: "<YOUR API TOKEN HERE>"

4) Track events with Mixpanel.track:

Mixpanel.track("login", distinct_id: 123)
Mixpanel.track("visited TOS")

License

MIT


*Note that all licence references and agreements mentioned in the mixpanel README section above are relevant to that project's source code only.