Popularity
4.1
Declining
Activity
0.0
Declining
60
3
33

Programming language: Go
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

mixpanel

Mixpanel Go Client

Donate to 1P8ccYhVt4ByLahuVXiCY6U185gmYA8Rqf

Usage

import "github.com/dukex/mixpanel"

--

documentation on godoc

Examples

Track

err := client.Track("13793", "Signed Up", map[string]interface{}{
    "Referred By": "Friend",
})

--

Identify and Update Operation

people := client.Identify("13793")

err := people.Track(map[string]interface{}{
    "Buy": "133"
})

err := people.Update("$set", map[string]interface{}{
    "Address":  "1313 Mockingbird Lane",
    "Birthday": "1948-01-01",
})

License

Released under the MIT License.

Author

Duke X (dukex)


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