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

@ivcmedia/referral-tracker

v0.5.0

Published

Browser script for recording referrals to a website client-side

Downloads

7

Readme

referral-tracker

A zero-dependency browser script that persists referral information in localStorage, allowing other scripts on the page to access that information and use it to attribute actions users take to particular referrals.

Usage

To use, simply include referral-tracker.js in your website's head tag to expose the global ReferralTracker constructor. Then, construct a new tracker instance (preferably in the head):

const referralTracker = new ReferralTracker();

Upon construction the ReferralTracker instance will check to see if the current browser has a previous referral that is still valid. Otherwise it will record a new referral.

interface ReferralTracker {
    constructor(options?: Options);

    referrals(): ReferralInfo[];

    mostRecentReferral(): ReferralInfo | null;
}

interface Options {
    namespace?: string;
    sessionTimeout?: number;
}

To access referral info from the tracker in other scripts, use the referrals() and mostRecentReferral() methods.

Where referrals() returns an array of all recorded referrals and mostRecentReferral() returns the most recent referral, if one exists.

ReferralInfo is an object with information about each referral for the current browser, and contains the following fields:

interface ReferralInfo {
    happenedAt: number;
    landingPageUrl: string;
    referrer?: string;
    adCampaign?: AdCampaign;
}

interface AdCampaign {
    name?: string;
    source?: string;
    medium?: string;
    term?: string;
    content?: string;
}

happenedAt is the timestamp at which the referral happened (as recorded by the visitor's browser at that time), landingPageUrl is the URL where the referral was recorded, referrer is the URL of the referring website (if any), and adCampaign is the ad campaign parameters (e.g. Google UTM_* parameters) found at the time of referral.

Example

A common use case is to include ad-campaign parameters in form submissions so that individual submissions can be attributed to an ad-campaign. Doing that with ReferralTracker is trivial:

const referralTracker = new ReferralTracker();

const mostRecentReferral = referralTracker.mostRecentReferral();
if (mostRecentReferral && mostRecentReferral.adCampaign) {
    document.querySelectorAll("form[data-track-referral]").forEach(form => {
        ["name", "source", "medium", "term", "content"].forEach(fieldName => {
            const value = mostRecentReferral.adCampaign[fieldName] || "none";
            const inputElem = document.createElement("input");
            inputElem.type = "hidden";
            inputElem.name = "adcampaign_" + fieldName;
            inputElem.value = value;
            form.appendChild(inputElem);
        });
    });
}

Now, all forms with a data-track-referral attribute will automatically have hidden fields for each ad-campaign parameter appended to them and included with each submission (make sure your form submission handler is expecting these extra fields though!).