1.2.0 • Published 10 days ago

@jackdbd/eleventy-plugin-plausible v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 days ago

@jackdbd/eleventy-plugin-plausible

npm version install size CodeCov badge Socket Badge

Eleventy plugin that retrieves analytics from Plausible when building your site.

Installation

npm install @jackdbd/eleventy-plugin-plausible

Note: this library was tested on Node.js >=18. It might work on other Node.js versions though.

About

This plugin retrieves analytics data from the Plausible API, caches it, then makes it available using an Eleventy global data key of your choice.

Usage

Configure this plugin with your Plausible API key and site ID, and then the options for analytics and caching.

import { plausiblePlugin } from '@jackdbd/eleventy-plugin-plausible'

export default function (eleventyConfig) {
  // some eleventy configuration...

  eleventyConfig.addPlugin(plausiblePlugin, {
    apiKey: 'YOUR-API-KEY',
    siteId: 'YOUR-SITE-ID',
    cacheDuration: '30m',
    cacheVerbose: true,
    statsBreakdownPeriod: '7d'
  })

  // some more eleventy configuration...
}

Then use it in your Eleventy config...

eleventyConfig.on('eleventy.after', async () => {
  const breakdown = await eleventyConfig.globalData.plausibleStatsBreakdown()
  console.log('stats breakdown from Plausible', breakdown)
})

...or in your templates (here is an example with nunjucks):

<p>Breakdown from Plausible analytics.</p>
<ul>
{%- for item in plausibleStatsBreakdown -%}
  <li>
    <a href="{{ item.page | url }}">
      {% if item.page %}
        <span>{{ item.page | slugify }}</span> <span>({{ item.visitors }} visitors)</span>
      {% else %}
        Untitled page
      {% endif %}
    </a>
  </li>
{%- endfor -%}
</ul>

Configuration

Plugin options

KeyDefaultDescription
apiKeyundefinedYour Plausible account API key.
cacheDirectoryundefinedDirectory where to store JSON responses coming from the Plausible API.
cacheDurationundefinedHow long to cache JSON responses for. See details on the eleventy-fetch documentation.
cacheVerboseundefinedWhether to log requested remote URLs to the console.
statsBreakdownGlobalDataKeyundefinedKey that this plugin should add to the eleventyConfig.globalData object.
statsBreakdownLimitundefinedNumber of results to return from the Plausible /stats API endpoint.
statsBreakdownMetricsundefinedComma-separated list of metrics to return from the Plausible /stats API endpoint. See here for all plausible.io metrics and their definitions.
statsBreakdownPeriodundefinedSee Time periods on the Plausible API docs for details.
siteIdundefinedThe domain of your site as configured in Plausible.

Troubleshooting

This plugin uses the debug library for logging. You can control what's logged using the DEBUG environment variable.

For example, if you set your environment variables in a .envrc file, you can do:

# print all logging statements
export DEBUG=11ty-plugin:*

Dependencies

PackageVersion
@jackdbd/plausible-client^1.0.2
zod^3.23.0
zod-validation-error^3.1.0

⚠️ Peer Dependencies

This package defines 2 peer dependencies.

PeerVersion range
@11ty/eleventy>=2.0.0 or 3.0.0-alpha.6
debug>=4.0.0

License

© 2022 - 2024 Giacomo Debidda // MIT License