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.
-
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
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 -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint.
Clean code begins in your IDE with SonarLint
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.