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

instrument-interactions

v0.3.0

Published

Automatically record user interactions with no configuration required

Downloads

5

Readme

Instrument Interactions

npm install instrument-interactions

Automatically record user interactions with no configuration required

Instrument Interactions records click and change events on all interactive elements. Instead of maintaining a list of elements to instrument, just instrument every button, link, tab, checkbox, etc so all new features and changes have analytics automatically.

Usage

The instrumentClicks function adds a global click handler that walks up the DOM tree on each click to see if the clicked element is a child of a button, link, etc. This way if a click event is fired on a span within a link, the onInteraction callback will be passed the link element, not the span.

The provided getLabel and getRole functions return the accessible name and aria role of an element respectively.

import { instrumentClicks, getLabel, getRole } from "instrument-interactions"

import { sendToAnalytics } from "" // wherever

instrumentClicks({
    onInteraction: (element) => {
        sendToAnalytics({
            label: getLabel(element),
            role: getRole(element),
        })
    }
})

Often the accessible name is enough to uniquely identify an element. But if it isn't, the getLandmarks function returns an array of landmark element descriptions.

<header aria-labelledby="main-title">
    <h1 id="main-title">My Cool Site</h1>
    <nav>
        <a href="/">Home</a>
    </nav>
</header>

calling getLandmarks on the link element would return

[{
    role: "navigation",
    label: undefined
},
{
    role: "banner",
    label: "My Cool Site"
}]

Provided Functions

instrumentClicks

Records click events on interactive elements. Returns an unsubscribe function.

Options

onInteraction: (element: Element) => void called whenever an event is triggered on an interactive element

findInteractive?: (element: Element) => Element | undefined find the interactive element, if any, that was clicked on, default function finds buttons, links, menuitems, switchs, and tabs

maxDepth?: number if using the default findInteractive function, how far up the tree to look for the interactive element, default is 6

keyboardHandlers?: boolean whether to add Space and Enter keyboard listeners to support keyboard 'clicks' on non-native buttons and links, default is true

eventCapture?: boolean add a listener with { capture: true }, default is true

rootElement?: HTMLElement element to attach the listener to, default is document.body

instrumentApp

Records change events and click events on interactive elements. Returns an unsubscribe function.

It takes the same options as instrumentClicks. Unlike instrumentClicks, the default findInteractive function includes clicks on non-native checkboxes, radios, and selects by default since they don't fire change events.

getLabel

Returns the accessible name for the provided element.

getRole

Returns the aria role for the provided element. To reduce bundle size, implicit roles are only supported for interactive elements.

getAncestors

Returns an iterator for the given element's ancestors.

Arguments

element: Element the first item returned by the iterator

rootElement?: Element the last element returned by the iterator, default is document.body

maxDepth?: number max number of elements returned by the iterator, optional

getLandmark

Returns a landmark description for a given element or undefined if the element doesn't have a landmark role. { role: string; label?: string }

getLandmarks

Returns an array of landmark descriptions for the given element's ancestors.

It takes the same arguments as getAncestors

removeInvalidLandmarks

Mutates the passed in landmark array, removing banner and contentinfo roles under article, complementary, main, navigation, or region roles per the implicit roles spec

License

MIT