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.
-
Semaphore
Semaphore is an open source CI/CD platform. Self-host Semaphore on your own servers or on a cloud provider. -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of mixpanel or a related project?
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.