2.0.0 • Published 4 years ago

nuxt-ackee v2.0.0

Weekly downloads
247
License
MIT
Repository
github
Last release
4 years ago

nuxt-ackee

npm version npm downloads Circle CI Codecov License

Nuxt.js module for Ackee analytics

📖 Release Notes

Setup

  1. Add nuxt-ackee dependency to your project
yarn add --dev nuxt-ackee # or npm install --save-dev nuxt-ackee
  1. Add nuxt-ackee to the buildModules section of nuxt.config.js
{
  // use `modules` property is using Nuxt < 2.9.0
  buildModules: [
    'nuxt-ackee'
  ],
  ackee: {
    server: 'https://example.com',
    domainId: 'xxx-xxx-xxx',
    ignoreLocalhost: false, // defaults to true
    detailed: true // defaults to false
  }
}

The module will directly record each route (initial + client-side navigation).

It will also expose this.$ackee and context.$ackee on client-side which is an instance of ackee-tracker.

Development

  1. Clone this repository
  2. Install dependencies using yarn install or npm install
  3. Start development server using npm run dev

License

MIT License

Copyright (c) Sergey Bedritsky sergey.bedritsky@gmail.com

2.0.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.9

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.2

4 years ago