gatsby-plugin-matomo/README.md

156 lines
11 KiB
Markdown
Raw Permalink Normal View History

2020-07-02 19:53:36 +02:00
[![gatsby-plugin-matomo](https://raw.githubusercontent.com/kremalicious/gatsby-plugin-matomo/main/src/gatsby-plugin-matomo.png)](https://kremalicious.com/gatsby-plugin-matomo/)
2018-12-05 21:00:23 +01:00
2018-05-07 18:29:27 +02:00
# gatsby-plugin-matomo
2018-05-07 20:32:52 +02:00
[![npm package](https://img.shields.io/npm/v/gatsby-plugin-matomo.svg)](https://www.npmjs.com/package/gatsby-plugin-matomo)
2020-02-24 01:12:01 +01:00
[![Build Status](https://github.com/kremalicious/gatsby-plugin-matomo/workflows/CI%2FCD%20Pipeline/badge.svg)](https://github.com/kremalicious/gatsby-plugin-matomo/actions)
2018-05-23 01:07:49 +02:00
[![Maintainability](https://api.codeclimate.com/v1/badges/067339a02f2058f5ba01/maintainability)](https://codeclimate.com/github/kremalicious/gatsby-plugin-matomo/maintainability)
2020-02-15 15:21:24 +01:00
[![Test Coverage](https://api.codeclimate.com/v1/badges/067339a02f2058f5ba01/test_coverage)](https://codeclimate.com/github/kremalicious/gatsby-plugin-matomo/test_coverage)
2019-03-30 14:00:20 +01:00
> 🥂 Gatsby plugin to add Matomo (formerly Piwik) onto a site. https://kremalicious.com/gatsby-plugin-matomo/
---
- [Features](#features)
- [Usage](#usage)
- [Options](#options)
- [Development](#development)
- [Changelog](#changelog)
- [License](#license)
2018-05-07 18:29:27 +02:00
## Features
Plugin uses sensible defaults prioritizing user experience, performance & privacy:
- include tracking code in all server-side rendered routes
- track all route views as custom events
- load tracking scripts at end of `body` tag
- use image tracking fallback for `noscript`
- don't load anything when visitor has Do Not Track enabled
- don't load anything in non-production environments
2018-07-29 09:54:01 +02:00
- consent mode for privacy
2018-05-10 23:53:41 +02:00
- allow loading tracking script locally
2018-12-05 21:00:23 +01:00
- define paths to be excluded from tracking
- `preconnect` to configured Matomo host url
- dev mode for local development
2018-05-07 18:29:27 +02:00
## Usage
1. First, install the plugin from your project's root:
2019-06-10 02:04:28 +02:00
```bash
cd yourproject/
npm i gatsby-plugin-matomo
```
2018-05-07 18:29:27 +02:00
2. Then load the plugin from your `gatsby-config.js` and set the required variables:
2019-06-10 02:04:28 +02:00
```js
plugins: [
{
resolve: 'gatsby-plugin-matomo',
options: {
siteId: 'YOUR_SITE_ID',
matomoUrl: 'https://YOUR_MATOMO_URL.COM',
siteUrl: 'https://YOUR_LIVE_SITE_URL.COM'
}
}
]
```
2018-05-07 18:29:27 +02:00
3. That's it!
2018-05-10 23:53:41 +02:00
_NOTE: By default, this plugin only generates output when run in production mode. To test your tracking code, run `gatsby build && gatsby serve`, or set `dev` option to `true`_.
2019-03-30 14:00:20 +01:00
### Options
| Option | Explanation |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `siteId` | Your Matomo site ID configured in your Matomo installation. |
| `matomoUrl` | The url of your Matomo installation. |
| `siteUrl` | The url of your site, usually the same as `siteMetadata.siteUrl`. Only used for generating the url for `noscript` image tracking fallback. |
2023-07-08 12:39:02 +02:00
| `matomoPhpScript` | (optional) The name of your Matomo PHP script. Defaults to `matomo.php` |
| `matomoJsScript` | (optional) The name of your Matomo JS script. Defaults to `matomo.js` |
| `exclude` | (optional) Specify an array of pathnames where tracking code will be excluded. The pathname `/offline-plugin-app-shell-fallback/` is excluded by default. |
| `requireConsent` | (optional) If true, tracking will be disabled until you call `window._paq.push(['setConsentGiven']);`. |
| `requireCookieConsent` | (optional) If true, no cookies will be stored or used until you call `window._paq.push(['setCookieConsentGiven']);`. |
| `disableCookies` | (optional) If true, no cookie will be used by Matomo. |
| `cookieDomain` | (optional) Specify cookie domain. |
2023-07-08 12:39:02 +02:00
| `localScript` | (optional) If set, load local `matomo.js` script from the given path, instead of loading it from your `matomoUrl`. |
| `trackLoad` | (optional) If true, it will track the loading of the matomo library. Defaults to `true`. |
| `respectDnt` | (optional) If false, will load all scripts without respecting user preference to `Do Not Track` on browsers. Defaults to `true`. |
| `dev` | (optional) Activate dev mode by setting to `true`. Will load all scripts despite not running in `production` environment. Ignores your local browser's DNT header too. Outputs some information in console about what it is doing. Useful for local testing but careful: all hits will be send like in production. |
| `enableJSErrorTracking` | (optional) Enable basic JavaScript error tracking and reporting in Matomo by setting to `true`. |
| `additionalTrackers` | (optional) An array of additional trackers to track on different Matomo servers. Additional trackers are objects with the keys `siteId` and `trackerUrl` containing the full URL to the Matomo PHP script. Defaults to `[]`. |
2018-12-05 20:33:18 +01:00
```js
plugins: [
{
resolve: 'gatsby-plugin-matomo',
options: {
siteId: 'YOUR_SITE_ID',
matomoUrl: 'https://YOUR_MATOMO_URL.COM',
2020-02-15 14:07:20 +01:00
siteUrl: 'https://YOUR_LIVE_SITE_URL.COM',
2018-12-05 20:33:18 +01:00
// All the optional settings
2023-07-08 12:39:02 +02:00
matomoPhpScript: 'matomo.php',
matomoJsScript: 'matomo.js',
2018-12-05 20:33:18 +01:00
exclude: ['/offline-plugin-app-shell-fallback/'],
requireConsent: false,
requireCookieConsent: false,
2018-12-05 20:33:18 +01:00
disableCookies: false,
2020-02-24 00:48:12 +01:00
cookieDomain: '*.example.org',
2023-07-08 12:39:02 +02:00
localScript: '/matomo.js',
dev: false,
enableJSErrorTracking: true,
additionalTrackers: [
{
siteId: 'ADDITIONAL_SITE_ID',
trackerUrl: 'https://ADDITIONAL_MATOMO_URL.COM/matomo.php'
}
]
2018-12-05 20:33:18 +01:00
}
}
]
```
## Development
```bash
npm i
2019-03-30 14:00:20 +01:00
npm start
# create production build
npm run build
# publishing to npm & GitHub releases
# uses https://github.com/webpro/release-it
npm run release
2019-06-10 02:04:17 +02:00
npm run release minor
npm run release major
```
2018-11-21 20:01:02 +01:00
## Changelog
See [CHANGELOG.md](CHANGELOG.md).
2018-05-07 18:29:27 +02:00
## License
The MIT License
2020-02-15 14:07:20 +01:00
Copyright (c) 2020 Matthias Kretschmann
2018-05-07 18:29:27 +02:00
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
---
Made with ♥ by [Matthias Kretschmann](https://matthiaskretschmann.com) ([@kremalicious](https://github.com/kremalicious))
Say thanks with BTC:
`35UUssHexVK48jbiSgTxa4QihEoCqrwCTG`
Say thanks with ETH:
2023-07-08 12:34:38 +02:00
`krema.eth`