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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ts-referer-parser

v1.0.7

Published

A typed referer parser library

Readme

TS Referer Parser

A TypeScript-based referer parser library inspired by nodejs-referer-parser. This library can be used in any JavaScript or TypeScript project, including various frameworks like React, Vue, Angular, or Node.js applications.

The implementation uses the shared 'database' of known referers found in file as it says in the snowplow-referer-parser/referer-parser README.

Installation

To install the package:

pnpm add ts-referer-parser

If you're using npm or yarn, you can use their respective commands:

npm install ts-referer-parser
# or
yarn add ts-referer-parser

Usage

import { parse } from "ts-referer-parser";

async function example() {
  let result = await parse("", "http://www.example.com/");

  console.log("Direct traffic:", result);
  // Output: Direct traffic: { medium: 'direct', referer: null, term: null }

  result = await parse(
    "https://www.facebook.com/",
    "http://www.example.com/"
  );

  console.log("Social media referral:", result);
  // Output: Social media referral: { medium: 'social', referer: 'facebook', term: null }

  result = await parse(
    "http://www.google.com/search?q=gateway+oracle+cards+denise+linn&hl=en&client=safari",
    "http://www.example.com/"
  );
  
  console.log("Search engine referral:", result);
  // Output: Search engine referral: { medium: 'search', referer: 'Google', term: 'gateway oracle cards denise linn' }
}

example();

Extracting Referer

To use this library effectively, you need to extract the referer URL. The method for doing this differs between client-side and server-side environments:

let referer = '';

if (typeof window !== 'undefined') {
  // Client-side (browser) environment
  referer = document.referrer;
} else {
  // Server-side environment
  // Note: The exact method to get the referer may vary depending on your server setup
  referer = request.headers.referer; // Example for Express.js
}

// Now you can use the referer with the parse function
const result = await parse(referer, currentPageUrl);

Note: In a server-side environment, the method to access the referer may vary depending on your server setup and framework. The example above assumes an Express.js-like setup.

API

parse(refererUrl: string, pageUrl?: string, internalDomains: string[] = []): Promise<Referer>

Parses the given referer URL and returns a Promise that resolves to a Referer object containing:

  • medium: The type of referer (e.g., 'search', 'social', 'unknown', 'internal', 'direct', 'invalid')
  • referer: The name of the referer (e.g., 'google', 'facebook', 'twitter')
  • term: The search term used, if applicable (null otherwise)

Features

  • Supports various search engines, social media platforms, and email providers
  • Handles internal referrals
  • Typescript support

Project Structure

  • src/index.ts: Contains the main parsing logic
  • src/types.ts: Defines the TypeScript interfaces
  • src/index.test.ts: Contains the test suite

Testing

This library uses Vitest for testing. To run the tests, use the following command:

pnpm test

License

This project is licensed under the Apache-2.0 License.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Development

To set up the project for development:

  1. Clone the repository
  2. Run pnpm i to install dependencies
  3. Use pnpm test to run the test suite
  4. Use pnpm build to build the project

Note: While pnpm is the preferred package manager for this project, npm or yarn should work as well.

Acknowledgements