https://github.com/petoem/mixpanel-crystal
Track events on Mixpanel with Crystal
https://github.com/petoem/mixpanel-crystal
analytics crystal mixpanel
Last synced: about 1 year ago
JSON representation
Track events on Mixpanel with Crystal
- Host: GitHub
- URL: https://github.com/petoem/mixpanel-crystal
- Owner: petoem
- License: mit
- Archived: true
- Created: 2017-10-13T19:39:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-29T10:21:35.000Z (over 6 years ago)
- Last Synced: 2024-10-30T17:48:27.262Z (over 1 year ago)
- Topics: analytics, crystal, mixpanel
- Language: Crystal
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-crystal - mixpanel-crystal - A library for sending events to Mixpanel (Third-party APIs)
- awesome-crystal - mixpanel-crystal - A library for sending events to Mixpanel (Third-party APIs)
- awesome-crystal - mixpanel-crystal - A library for sending events to Mixpanel (Third-party APIs)
README
# mixpanel-crystal
[](https://github.com/petoem/mixpanel-crystal/releases)
[](https://travis-ci.org/petoem/mixpanel-crystal)
[](https://github.com/petoem/mixpanel-crystal/blob/master/LICENSE)
**mixpanel-crystal** is a library for tracking events on Mixpanel from your crystal applications.
## Installation
Add this to your application's `shard.yml`:
```yaml
dependencies:
mixpanel:
github: petoem/mixpanel-crystal
```
## Usage
```crystal
require "mixpanel"
# Use Mixpanel::Tracker to track events in your application. To track an event, use
tracker = Mixpanel::Tracker.new "YOUR_TOKEN"
tracker.track "Signup", Mixpanel::Event::Properties{"username" => "Pino", "Age" => 2}
```
You can also take a look at the [specs](https://github.com/petoem/mixpanel-crystal/blob/master/spec/mixpanel_spec.cr) for more examples or generate documentation with `crystal docs` command.
## Contributing
1. Fork it ( https://github.com/petoem/mixpanel-crystal/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request
## Contributors
- [petoem](https://github.com/petoem) Michael Petö - creator, maintainer