@jackdbd/eleventy-plugin-plausible
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

@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

⚠️ Peer Dependencies

This package defines 2 peer dependencies.

Peer Version range
@11ty/eleventy >=2.0.0 or 3.0.0-alpha.4
debug >=4.0.0

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

Key Default Description
apiKey undefined Your Plausible account API key.
cacheDirectory ".cache-plausible-json-responses" Directory where to store JSON responses coming from the Plausible API.
cacheDuration "1d" How long to cache JSON responses for. See details on the eleventy-fetch documentation.
cacheVerbose false Whether to log requested remote URLs to the console.
statsBreakdownGlobalDataKey "plausibleStatsBreakdown" Key that this plugin should add to the eleventyConfig.globalData object.
statsBreakdownLimit 10 Number of results to return from the Plausible /stats API endpoint.
statsBreakdownMetrics "visitors" Comma-separated list of metrics to return from the Plausible /stats API endpoint. See here for all plausible.io metrics and their definitions.
statsBreakdownPeriod "30d" See Time periods on the Plausible API docs for details.
siteId undefined The 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

Package Version
@jackdbd/plausible-client ^1.0.2
zod ^3.22.4
zod-validation-error ^3.0.0

License

© 2022 - 2024 Giacomo Debidda // MIT License

Package Sidebar

Install

npm i @jackdbd/eleventy-plugin-plausible

Weekly Downloads

11

Version

1.1.0

License

MIT

Unpacked Size

24.5 kB

Total Files

20

Last publish

Collaborators

  • jackdbd