项目作者: swup

项目描述 :
📈 Swup Matomo Analytics plugin.
高级语言: JavaScript
项目地址: git://github.com/swup/matomo-plugin.git
创建时间: 2019-10-08T14:22:59Z
项目社区:https://github.com/swup/matomo-plugin

开源协议:MIT License

下载


Swup Matomo Plugin

A swup plugin for integrating Matomo analytics.

  • Trigger pageview events after each page change
  • This event is not triggered on intial load, so the first page view must be triggered elsewhere
  • However, the page view event is by default triggered in the Javascripts tracking snippet used for embedding Matomo

Simplified code run by this plugin on the page:view hook:

  1. _paq.push(['setDocumentTitle', document.title]);
  2. _paq.push(['setCustomUrl', window.location.pathname + window.location.search]);
  3. _paq.push(['trackPageView']);

Installation

Install the plugin from npm and import it into your bundle.

  1. npm install @swup/matomo-plugin
  1. import SwupMatomoPlugin from '@swup/matomo-plugin';

Or include the minified production file from a CDN:

  1. <script src="https://unpkg.com/@swup/matomo-plugin@2"></script>

Usage

To run this plugin, include an instance in the swup options.

  1. const swup = new Swup({
  2. plugins: [new SwupMatomoPlugin()]
  3. });