0.0.1 • Published 8 years ago

ember-ahoy v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Ember Ahoy

This Addon integrates your ember app with ahoy, a Visit and event tracking for JavaScript

Installation

Installing the library is as easy as:

  • ember install ember-ahoy

Usage

To track a visit in a page use track-page helper

{{!-- app/templates/home.hbs --}}
{{track-page "Home"}}

...

Configuration

Ember Ahoy is configured via the 'ember-ahoy' section in the application's config/environment.js file, e.g.:

ENV['ahoy'] = {
  debug: environment === 'development',
  visitsUrl: 'http://my.server.io/ahoy/visits',
  eventsUrl: 'http://my.server.io/ahoy/events'
};