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

@sapt/analytics

v0.1.0

Published

Lightweight analytics SDK for Sapt. Drop-in script tag or programmatic client for pageviews, clicks, scroll depth, engagement, and custom events.

Readme

@sapt/analytics

Lightweight analytics SDK. Drop-in script tag or programmatic client for pageviews, clicks, scroll depth, engagement time, and custom events.

Install

npm install @sapt/analytics

Script tag (zero config)

Add this to your site. Auto-captures pageviews, clicks, scroll depth, engagement, form submissions, and errors.

<script src="https://cdn.sapt.ai/track.js" data-project="YOUR_PROJECT_ID"></script>

Programmatic usage

import { createAnalyticsClient } from '@sapt/analytics'

const analytics = createAnalyticsClient({
  projectId: 'YOUR_PROJECT_ID',
  endpoint: 'https://ingest.sapt.ai',
})

// Auto-captures pageviews, clicks, scroll depth, etc. by default
// Or track custom events:
analytics.track('signup', { plan: 'starter' })
analytics.identify({ email: '[email protected]' })
analytics.page()

Configuration

createAnalyticsClient({
  projectId: string       // Required. Your Sapt project ID.
  endpoint: string        // Required. Ingest endpoint URL.
  autoCapture?: boolean   // Auto-capture events (default: true in browser)
  flushInterval?: number  // Batch flush interval in ms (default: 5000)
  maxBatchSize?: number   // Max events per batch (default: 10)
  identity?: Record<string, string>  // Default identity traits
})

Auto-captured events

| Event | Description | |-------|-------------| | pageview | Page load and SPA navigation | | click | Clicks on links, buttons, interactive elements | | outbound_click | Clicks to external domains | | scroll_depth | 25%, 50%, 75%, 100% scroll milestones | | engagement | Active time on page (accounts for tab visibility) | | form_submit | Form submissions | | rage_click | 3+ rapid clicks on the same element | | file_download | Clicks on PDF, DOCX, CSV, etc. | | phone_click | Clicks on tel: links | | email_click | Clicks on mailto: links | | js_error | Uncaught JS errors and unhandled promise rejections | | copy | Text copy events | | print | Print events |

API

analytics.track(event, properties?)

Track a custom event.

analytics.identify(traits)

Set identity traits that are sent with all subsequent events.

analytics.page(properties?)

Manually track a pageview.

analytics.flush()

Force flush the event queue.

analytics.shutdown()

Flush remaining events and clean up listeners.

License

MIT