All Projects β†’ kremalicious β†’ gatsby-plugin-matomo

kremalicious / gatsby-plugin-matomo

Licence: MIT license
πŸ₯‚ Gatsby plugin to add Matomo (formerly Piwik) onto a site.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gatsby-plugin-matomo

hugo-component-matomo
Matomo user tracking and optout scripts for Hugo
Stars: ✭ 38 (-32.14%)
Mutual labels:  piwik, matomo
matomo-for-wordpress
Get a fully functioning Matomo Analytics for your WordPress. Star us on Github? +1. Matomo is the leading open alternative to Google Analytics that gives you full control over your data. Privacy is built-in. 100% data ownership, no one else can see your data. We love Pull Requests!
Stars: ✭ 90 (+60.71%)
Mutual labels:  piwik, matomo
gatsby-plugin-lunr
Gatsby plugin for full text search implementation based on lunr client-side index. Supports multilanguage search.
Stars: ✭ 69 (+23.21%)
Mutual labels:  gatsbyjs, gatsby-plugin
matomo-mediawiki-extension
www.mediawiki.org/wiki/Extension:Piwik_Integration
Stars: ✭ 18 (-67.86%)
Mutual labels:  piwik, matomo
matomo-tracker
Stand alone library for using matamo tracking in frontend projects
Stars: ✭ 138 (+146.43%)
Mutual labels:  piwik, matomo
gatsby-source-stripe
Gatsby source plugin for building websites using Stripe as a data source
Stars: ✭ 71 (+26.79%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-plugin-apollo-client
πŸ“‘Inject a Shopify Apollo Client into the browser.
Stars: ✭ 20 (-64.29%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-source-rss-feed
Gatsby source plugin for rss feed.
Stars: ✭ 24 (-57.14%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-plugin-dynamic-routes
Creating dynamic routes based on your environment and/or renaming existing routes
Stars: ✭ 14 (-75%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-plugin-disqus
πŸ’¬ A plugin for adding Disqus comments to GatsbyJS
Stars: ✭ 40 (-28.57%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-attila-theme-ghost
A Gatsby theme plugin for creating blogs from headless Ghost CMS.
Stars: ✭ 16 (-71.43%)
Mutual labels:  gatsbyjs, gatsby-plugin
Matomo
Liberating Web Analytics. Star us on Github? +1. Matomo is the leading open alternative to Google Analytics that gives you full control over your data. Matomo lets you easily collect data from websites & apps and visualise this data and extract insights. Privacy is built-in. We love Pull Requests!
Stars: ✭ 15,711 (+27955.36%)
Mutual labels:  piwik, matomo
gatsby-plugin-intercom-spa
Gatsby plugin to add intercom onto a site
Stars: ✭ 23 (-58.93%)
Mutual labels:  gatsbyjs, gatsby-plugin
ngx-matomo
Matomo (aka. Piwik) web analytics for Angular applications
Stars: ✭ 83 (+48.21%)
Mutual labels:  piwik, matomo
gatsby-graphcms-example
Example of Gatsby source plugin for GraphCMS
Stars: ✭ 32 (-42.86%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-plugin-prettier-build
prettify gatsby build output
Stars: ✭ 30 (-46.43%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-transformer-remark-frontmatter
Allows querying frontmatter fields as markdown with gatsby
Stars: ✭ 13 (-76.79%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-plugin-scroll-indicator
A visual indicator of page scroll on Gatsby websites
Stars: ✭ 14 (-75%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-remark-emojis
πŸš€ Processes emoji in markdown and inlines <img> tags with the corresponding base64 representation of the image.
Stars: ✭ 28 (-50%)
Mutual labels:  gatsbyjs, gatsby-plugin
gatsby-theme-deck-n-blog
Create a deck (with mdx-deck) and a blog post from the same MDX
Stars: ✭ 17 (-69.64%)
Mutual labels:  gatsbyjs, gatsby-plugin

gatsby-plugin-matomo

gatsby-plugin-matomo

npm package Build Status Maintainability Test Coverage

πŸ₯‚ Gatsby plugin to add Matomo (formerly Piwik) onto a site. https://kremalicious.com/gatsby-plugin-matomo/


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
  • consent mode for privacy
  • allow loading tracking script locally
  • define paths to be excluded from tracking
  • preconnect to configured Matomo host url
  • dev mode for local development

Usage

  1. First, install the plugin from your project's root:

    cd yourproject/
    npm i gatsby-plugin-matomo
  2. Then load the plugin from your gatsby-config.js and set the required variables:

    plugins: [
      {
        resolve: 'gatsby-plugin-matomo',
        options: {
          siteId: 'YOUR_SITE_ID',
          matomoUrl: 'https://YOUR_MATOMO_URL.COM',
          siteUrl: 'https://YOUR_LIVE_SITE_URL.COM'
        }
      }
    ]
  3. That's it!

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.

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.
matomoPhpScript (optional) The name of your Matomo PHP script. Defaults to piwik.php
matomoJsScript (optional) The name of your Matomo JS script. Defaults to piwik.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.
localScript (optional) If set, load local piwik.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 [].
plugins: [
  {
    resolve: 'gatsby-plugin-matomo',
    options: {
      siteId: 'YOUR_SITE_ID',
      matomoUrl: 'https://YOUR_MATOMO_URL.COM',
      siteUrl: 'https://YOUR_LIVE_SITE_URL.COM',
      // All the optional settings
      matomoPhpScript: 'piwik.php',
      matomoJsScript: 'piwik.js',
      exclude: ['/offline-plugin-app-shell-fallback/'],
      requireConsent: false,
      requireCookieConsent: false,
      disableCookies: false,
      cookieDomain: '*.example.org',
      localScript: '/piwik.js',
      dev: false,
      enableJSErrorTracking: true,
      additionalTrackers: [
        {
          siteId: 'ADDITIONAL_SITE_ID',
          trackerUrl: 'https://ADDITIONAL_MATOMO_URL.COM/matomo.php'
        }
      ]
    }
  }
]

Development

npm i
npm start

# create production build
npm run build

# publishing to npm & GitHub releases
# uses https://github.com/webpro/release-it
npm run release
npm run release minor
npm run release major

Changelog

See CHANGELOG.md.

License

The MIT License

Copyright (c) 2020 Matthias Kretschmann

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 (@kremalicious)

Say thanks with BTC: 35UUssHexVK48jbiSgTxa4QihEoCqrwCTG

Say thanks with ETH: 0x04354F554536DA108726829207958d3E277f0210

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].