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

plausible

v2.0.2

Published

A zero-dependency, TypeScript library for interacting with the Plausible Analytics API, written in Deno!

Downloads

317

Readme

Plausible

A zero-dependency, TypeScript library for interacting with the Plausible Analytics API, written in Deno! Easily retrieve realtime, aggregated, and timeseries data for your site, or get breakdowns and properties for your Plausible Analytics account. More information can be found at Plausible Analytics API documentation.

Installation

Deno

To use the library in Deno, import the module at https://deno.land/x/[email protected]/index.ts.

import Plausible from "https://deno.land/x/[email protected]/index.ts";

Node

To use the library in Node, install it via npm:

npm install --save plausible

Then, import the library in your code:

import Plausible from "plausible";

Quickstart

Here's an example of how you can use the Plausible class to retrieve the number of current visitors on your site:

import Plausible from "https://deno.land/x/[email protected]/index.ts";

const key = "your-api-key";
const site = "your-site-id";

const plausible = new Plausible(key, site);
const realtime = await plausible.getRealtime();

console.log(realtime);

API

Plausible

new Plausible(key: string, site: string, url?: string | null)

Creates a new Plausible instance.

Parameters:

  • key: Your Plausible Analytics API key.
  • site: The ID of the site you want to retrieve data for.
  • url: (optional): The base URL of the Plausible Analytics API. Defaults to https://plausible.com.

getRealtime

getRealtime(): Promise<number>

Retrieves the number of current visitors on your site. A current visitor is defined as a visitor who triggered a pageview on your site in the last 5 minutes.

getAggregate

getAggregate<Compare extends boolean>(period: Period, metric: Metrics, compare?: Compare | null, filters?: string | null): Promise<Aggregated<Compare>>

Aggregates metrics over a certain time period. If you are familiar with the Plausible dashboard, this function corresponds to the top row of stats that include Unique Visitors pageviews, Bounce rate and Visit duration.

Parameters

  • period: The time period to retrieve data for. Possible values are:

    • "12mo"
    • "6mo"
    • "month"
    • "30d"
    • "7d"
    • "day"
    • "custom"
  • metric: The metric to retrieve. Possible values are:

    • "visitors"
    • "pageviews"
    • "bounce_rate"
    • "visit_duration"
    • "events"
    • "visits"
  • compare (optional): If true, the returned data will include a comparison to the previous period.

  • filters (optional): A string containing filters to apply to the data. Filters can be used to segment the data by different dimensions, such as referral source or device type.

getTimeseries

getTimeseries<Metric extends Metrics>(period: Period, metric: Metric, filters?: string | null, interval? Interval | null): Promise<Datapoints<Metric>>

This function retrieves timeseries data over a certain time period. If you are familiar with the Plausible dashboard, this function corresponds to the main visitor graph.

Parameters

  • period: The time period to retrieve data for. Possible values are:

    • "12mo"
    • "6mo"
    • "month"
    • "30d"
    • "7d"
    • "day"
    • "custom"
  • metric: The metric to retrieve. Possible values are:

    • "visitors"
    • "pageviews"
    • "bounce_rate"
    • "visit_duration"
    • "events"
    • "visits"
  • filters (optional): A string containing filters to apply to the data. Filters can be used to segment the data by different dimensions, such as referral source or device type.

  • interval (optional): The reporting interval. Defaults to month for 6mo and 12mo, otherwise falls back to date. Possible values are:

    • "date"
    • "month"

getBreakdown

getBreakdown<Property extends Properties, Metric extends Metrics>(period: Period, metric: Metric, property: Property, filter?: string | null, limit?: number | null, page?: number | null): Promise<Breakdowns<Property, Metric>>

Retrieves breakdowns of metrics over a certain time period. Breakdowns can be used to segment the data by different dimensions, such as referral source or device type.

Parameters

  • period: The time period to retrieve data for. Possible values are:

    • "12mo"
    • "6mo"
    • "month"
    • "30d"
    • "7d"
    • "day"
    • "custom"
  • metric: The metric to retrieve. Possible values are:

    • "visitors"
    • "pageviews"
    • "bounce_rate"
    • "visit_duration"
    • "events"
    • "visits"
  • property: The property to group the data by. Possible values are

    • "event:name"
    • "event:page"
    • "visit:source"
    • "visit:referrer"
    • "visit:utm_medium"
    • "visit:utm_source"
    • "visit:utm_campaign"
    • "visit:device"
    • "visit:browser"
    • "visit:browser_version"
    • "visit:os"
    • "visit:os_version"
    • "visit:country"
  • filters (optional): A string containing filters to apply to the data. Filters can be used to segment the data by different dimensions, such as referral source or device type.

  • limit: Limit the number of results. Maximum value is 1000. Defaults to 100.

  • offset: Number of the page, used to paginate results. Importantly, the page numbers start from 1 not 0.

License

This library is licensed under the MIT License.

Acknowledgments

This library was created using the Plausible Analytics API documentation. The README.md was written with the help of ChatGPT, a language model developed by OpenAI.