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

react-user-agent-client-hints

v0.3.1

Published

React hook implementing the User-Agent Client Hints API to get information about the browser and operating system of a user.

Downloads

103

Readme

React User Agent Client Hints

React hook implementing the User-Agent Client Hints API to get information about the browser and operating system of a user.

codecov

example workflow

The useUserAgentData hook allows you to fetch high entropy user-agent data from the browser. It returns an object with the user-agent data, or an error if something went wrong.

Usage

To use the useUserAgentData hook, you must pass an array of hints as an argument. These hints are used to request specific user-agent data.

import { useUserAgentData } from "path/to/hook"

function MyComponent() {
  const [userAgentData, error] = useUserAgentData(["brand", "version"])

  if (error) {
    return <div>{error.message}</div>
  }

  if (!userAgentData) {
    return <div>Loading...</div>
  }

  return (
    <div>
      <p>Brands: {userAgentData.brands.map(brand => brand.brand).join(", ")}</p>
      <p>Mobile: {userAgentData.mobile ? "Yes" : "No"}</p>
      <p>Architecture: {userAgentData.architecture}</p>
      <p>Bitness: {userAgentData.bitness}</p>
      <p>Model: {userAgentData.model}</p>
      <p>Platform: {userAgentData.platform}</p>
      <p>Platform Version: {userAgentData.platformVersion}</p>
      <p>UA Full Version: {userAgentData.uaFullVersion}</p>
      <p>Wow64: {userAgentData.wow64 ? "Yes" : "No"}</p>
      <p>
        Full Version List:{" "}
        {userAgentData.fullVersionList.map(brand => brand.brand).join(", ")}
      </p>
    </div>
  )
}
interface UADataValues {
  brands: NavigatorUABrandVersion[]
  mobile: boolean
  architecture: string
  bitness: string
  model: string
  platform: string
  platformVersion: string
  uaFullVersion: string
  wow64: boolean
  fullVersionList: NavigatorUABrandVersion[]
}

Error handling

If there is an error while fetching the user-agent data, useUserAgentData will return an error object with a message. The possible error messages are:

  • User-agent client hints API is undefined.: The navigator.userAgentData object is not defined in the browser.
  • Permission denied accessing user-agent data: The user has not granted permission for the client hints.
  • Failed to get user-agent data: An unexpected error occurred.

Potential Use Cases

  • Providing custom-tailored polyfills to users on identifying that their browser lacked some web platform feature.
  • Working around browser bugs.
  • Recording browser analytics.
  • Adapting content based on user-agent information. This includes serving different content to mobile devices, in particular devices identified as low-powered. It might also include adapting the design to tailor the interfaces to the user's OS, or providing links to OS-specific ones.
  • Providing a notification when a user logs in from a different browser or device, as a security feature.
  • Providing the correct binary executable, on a site offering a download.
  • Collecting information about the browser and device to identify application errors.
  • Blocking spammers, bots, and crawlers.

Possible Hints

  • "brand": The brand of the user agent, such as "Google", "Apple", "Mozilla", etc.
  • "model": The model of the device, such as "iPhone", "Pixel", "Galaxy", etc.
  • "version": The version of the user agent, such as "13.0", "11.0", "78.0", etc.
  • "architecture": The architecture of the device, such as "arm", "x86", "x86_64", etc.
  • "platform": The platform the user agent is running on, such as "Windows", "macOS", "iOS", "Android", etc.
  • "mobile": A boolean indicating whether the device is a mobile device or not.
  • "fullVersionList": A list of objects representing the full version of the user agent and the brand
  • "wow64": A boolean indicating whether the user agent is running on a 32-bit version of Windows on a 64-bit system.

References

  • https://developer.mozilla.org/en-US/docs/Web/API/User-Agent_Client_Hints_API
  • https://developer.mozilla.org/en-US/docs/Web/API/NavigatorUAData