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

@naturalcycles/frontend-lib

v5.1.0

Published

Bundled frontend libraries

Readme

@naturalcycles/frontend-lib

Bundled frontend libraries

npm

One self-contained bundle per feature, in bundle/, to be loaded from a CDN as <script type="module" async>. Consumers with their own bundler use the package exports instead.

Analytics client on a page

The stub is inline and synchronous, so nothing is lost while the bundle downloads. init() drains it, replaying each call under the timestamp it was made at.

The stub carries every method of the real client, so a page never has to check whether it has loaded. Only track and identify can be replayed; the rest have nothing to act on yet and warn.

<script>
  {
    const tooEarly = name => () => console.warn(`[analytics] ${name}() before the client loaded`)

    globalThis.analyticsClient = {
      q: [],
      track(...args) {
        this.q.push({ method: 'track', args, ts: Date.now() })
      },
      identify(...args) {
        this.q.push({ method: 'identify', args, ts: Date.now() })
      },
      init: tooEarly('init'),
      reset: tooEarly('reset'),
      flushNow: tooEarly('flushNow'),
      destroy: tooEarly('destroy'),
      onEvent: () => {
        tooEarly('onEvent')()
        return () => {} // the unsubscribe the real onEvent returns
      },
    }
  }
</script>

<script type="module" async>
  import { AnalyticsClient } from 'https://cdn.jsdelivr.net/npm/@naturalcycles/frontend-lib/bundle/analyticsClient.js'

  const analyticsClient = new AnalyticsClient({
    url: 'https://api.example.com/web/e',
    clientId: 10,
    identity: { persistence: 'cookie', persistenceKey: 'analyticsId' },
  })
  analyticsClient.init()

  // Calls from here on go straight to the client
  Object.assign(globalThis, { analyticsClient })
</script>

Track from anywhere on the page, before or after the bundle has loaded:

globalThis.analyticsClient.track('Click', { element: 'cta' })

Autocapturing pageviews

An SPA changes the url without reloading, so there is no event to listen to. Patch both history methods, and keep popstate for back/forward. Safe to run before the bundle has loaded - the stub records these like any other call.

const { pushState, replaceState } = globalThis.history

function trackPageView() {
  globalThis.analyticsClient.track('PageView', { path: globalThis.location.pathname })
}

globalThis.history.pushState = function (...args) {
  pushState.apply(this, args)
  trackPageView()
}
globalThis.history.replaceState = function (...args) {
  replaceState.apply(this, args)
  trackPageView()
}
globalThis.addEventListener('popstate', trackPageView)

trackPageView() // the pageview of the landing url, which no navigation fires

Credits

The analytics client is a clean-room reimplementation whose design, persisted-identity format and default property names originate from mixpanel-browser, Copyright Mixpanel, Inc., licensed under the Apache License 2.0.