Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

plausible-tracker

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

plausible-tracker

Unofficial frontend tracker to interact with Plausible Analytics

  • 0.1.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
30K
decreased by-4.04%
Maintainers
1
Weekly downloads
 
Created
Source

Plausible Analytics Tracker

Unofficial frontend library to interact with Plausible Analytics.

Features

  • Same features as the official script, but as an NPM module
  • Automatically track page views in your SPA apps
  • Track goals and custom events
  • Provide manual values that will be bound to the event
  • Full typescript support

Installation

To install, simply run:

npm install plausible-tracker

yarn add plausible-tracker

Usage

To begin tracking events, you must initialize the tracker:

import Plausible from 'plausible-tracker'

const plausible = Plausible({
  domain: 'my-app.com'
})

Plausible() accepts some optional options that you may want to provide:

OptionTypeDescriptionDefault
domainstringYour site's domain, as declared by you in Plausible's settingslocation.hostname
hashModeboolEnables tracking based on URL hash changes.false
trackLocalhostboolEnables tracking on localhost.false
urlstringCurrent page's URL.location.href
referrer`stringnull`Referrer's address
deviceWidthnumberUser's device width for device tracking.window.innerWidth
apiHoststringPlausible's API host to use. Change this if you are self-hosting.'https://plausible.io'

The object returned from Plausible() contains the functions that you'll use to track your events. These functions are:

  • pageView(): Tracks a single page view.
  • trackEvent(): Tracks custom events and goals
  • enableAutoPageViews(): Enables automatic page view tracking for SPAs

For the complete documentation on these functions and their parameters, check out the reference documentation.

Tracking page views

To track a page view, use the pageView function provided

import Plausible from 'plausible-tracker'

const { pageView } = Plausible()

// Track a page view
pageView()

You may also override the values you provided when initializing the tracker by passing a similar object as the first parameter:

import Plausible from 'plausible-tracker'

const { pageView } = Plausible({
  // Provide a default referrer
  referrer: "facebook.com",
})

// And override it on this call
pageView({ referrer: "google.com" })

The second parameter is an object with some options similar to the ones provided by the official Plausible script.

The only supported option at the moment is callback – a function that is called once the event is logged successfully.

import Plausible from 'plausible-tracker'

const { pageView } = Plausible()

// And override it on this call
pageView({}, { callback: () => console.log("Done!") })

Automatically tracking page views

If your app is an SPA that uses JS-based routing, you'll need to use browser events to manually track page views. A built-in function enableAutoPageViews enables automatic tracking for you so you don't need to write custom logic.

import Plausible from 'plausible-tracker'

const { enableAutoPageViews } = Plausible()

// This tracks the current page view and all future ones as well
enableAutoPageViews()

If your app uses URL hashes to represent pages, set hashMode to true:

import Plausible from 'plausible-tracker'

const { enableAutoPageViews } = Plausible({
  hashMode: true
})

// Hash changes will also trigger page views
enableAutoPageViews()

The way it works is by overriding history.pushState and attaching event listeners to popstate and hashchange (only if you set hashMode to true). If your frontend framework uses other methods to manage navigation, you might want to write your own logic using pageView to manually trigger page views.

Cleaning up the event listeners

When you call enableAutoPageViews(), it adds some event listeners and overrides history.pushState. To remove them and restore history.pushState, call the cleanup function returned by enableAutoPageViews():

import Plausible from 'plausible-tracker'

const { enableAutoPageViews } = Plausible()

const cleanup = enableAutoPageViews()

// ...

// Remove event listeners and restore history.pushState
cleanup()

Tracking custom events and goals

To track goals, all you need to do is call trackEvent and give it the name of the goal/event as the first parameter:

import Plausible from 'plausible-tracker'

const { trackEvent } = Plausible()

// Tracks the 'signup' goal
trackEvent('signup')

As with pageView, you may also provide override values and a callback as the second and third parameters respectively:

import Plausible from 'plausible-tracker'

const { trackEvent } = Plausible({
  referrer: 'facebook.com',
})

// Tracks the 'signup' goal with a different referrer and a callback
trackEvent(
  'signup',
  { referrer: 'google.com' },
  { callback: () => console.log('done') }
);

Reference documentation

For the full method and type documentation, check out the reference documentation.

FAQs

Package last updated on 12 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc