Plausible Analytics Tracker
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()
plausible.trackEvent('signup')
[!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') })
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()
cleanup()
setEventOptions({ props: { 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()
cleanup()
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: [] })
install()
cleanup()
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