npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@barbapapazes/plausible-tracker

v0.5.0

Published

Fork of frontend tracker to interact with Plausible Analytics

Downloads

8,996

Readme

Plausible Analytics Tracker

npm version npm downloads

A rewrite of plausible-tracker with extensibility and future features in mind.

[!IMPORTANT] This is not a drop-in replacement.

Why a rewrite?

The original tracker from the Plausible team have not received updates for more than 2 years.

Since then, the script tracker have evolved but not the npm package. The file downlaods and revenue tracking are not supported, for example.

Also, some serious issues were opened and not addressed. The outbound tracking was breaking the target="_blank" attribute, for example.

Usage

First, install the package:

npm install @barbapapazes/plausible-tracker

Then, use it in your code:

import { createPlausibleTracker } from '@barbapapazes/plausible-tracker'

const plausible = createPlausibleTracker()

plausible.trackPageview() // Track a page view
plausible.trackEvent('signup') // Track a custom event

[!NOTE] The trackPageview is a wrapper around trackEvent with the pageview event name.

First argument of trackPageview and second of trackEvent is an object accepting props, data and a callback that is triggered after the event is sent.

Props are similar to the ones provided by the official Plausible script.

Data allows you to override some values like the url, referrer and deviceWidth.

plausible.trackEvent('signup', { props: { variation: 'button A' }, callback: () => console.log('sended') }) // Track a custom event with a custom prop with a callback

This core tracker is minimal and does not include any extensions. So you can easily compose it to avoid to ship code that you don't need.

Extensions

The extensions are the features that are not included in the core tracker.

[!NOTE] Extensions will help to maintain the package up to date with the official script.

Current extensions:

Auto pageview tracking

import { createPlausibleTracker } from '@barbapapazes/plausible-tracker'
import { useAutoPageviews } from '@barbapapazes/plausible-tracker/extensions'

const plausible = createPlausibleTracker()

const { install, cleanup, setEventOptions } = useAutoPageviews(plausible)

install()

// At any time, you can stop the auto pageview tracking
cleanup()

// You can also set the page options
setEventOptions({ props: { variation: 'button A' } })
// Now, every page view will include the prop `variation: 'button A'`

Outbound link click tracking

import { createPlausibleTracker } from '@barbapapazes/plausible-tracker'
import { useAutoOutboundTracking } from '@barbapapazes/plausible-tracker/extensions'

const plausible = createPlausibleTracker()

const { install, cleanup, setEventOptions } = useOutboundLinkTracking(plausible)

install()

// At any time, you can stop the outbound link tracking
cleanup()

// You can also set the page options
setEventOptions({ props: { variation: 'button A' } })

File downloads tracking

import { createPlausibleTracker } from '@barbapapazes/plausible-tracker'
import { useAutoFileDownloadsTracking } from '@barbapapazes/plausible-tracker/extensions'

const plausible = createPlausibleTracker()

const { install, cleanup, setEventOptions } = useFileDownloadsTracking(plausible, { fileTypes: [] }) // You can pass the file types to track. For example: ['pdf', 'zip']

install()

// At any time, you can stop the file downloads tracking
cleanup()

// You can also set the page options
setEventOptions({ props: { variation: 'button A' } })

[!IMPORTANT] By default, the file downloads does not track any file type. You need to pass the file types to track.

The package exports the defaultFileTypes that is an array with the most common file types which are the same as the official script.

import { defaultFileTypes } from '@barbapapazes/plausible-tracker/extensions'

const { install, cleanup, setEventOptions } = useFileDownloadsTracking(plausible, { fileTypes: defaultFileTypes })

This allows you to easily customize the file types to track:

import { defaultFileTypes } from '@barbapapazes/plausible-tracker/extensions'

const { install, cleanup, setEventOptions } = useFileDownloadsTracking(plausible, { fileTypes: [...defaultFileTypes, 'svg'] })

Contribute

Contributions are more than welcome. I'm not part of the Plausible team and I'm doing this in my free time. 💛

  • Fork the repository
  • Install the dependencies: pnpm install
  • Build the project: pnpm build
  • Use playground to test your changes: cd playground && pnpm dev

Thank you for your help!

License

MIT © Barbapapazes

This package is not affiliated with Plausible Analytics but inspired by their work. plausible-tracker Plausible Analytics Tracker