@bbc/web-vitals

2.0.1 • Public • Published

Web-Vitals

The WebVitals utility provides a configurable hook which will collect device capability metrics and Web Vitals metrics for each page view, and then send those metrics to a reporting endpoint when the user leaves the page.

Metrics we report on

Core Web-Vitals

  • CLS (Cumulative Layout Shift)
  • LCP (Largest Contentful Paint)
  • FID (First Input Delay)

Other data (useful for categorising the web-vitals data received)

  • FCP (First Contentful Paint)

  • TTFB (Time To First Byte)

  • INP (Interaction to Next Paint)

  • Device Memory

  • Device CPU

  • Effective Connection Type

Installation

npm install @bbc/web-vitals --save

Install yarn

The Web Vitals project uses yarn for package management. It is recommended to install yarn through the npm package manager, which comes bundled with Node.js when you install it on your system. To install Yarn, run this command:

npm install --global yarn

Props

Argument Type Required Default Example
enabled Boolean No false { enabled: true }
reportingEndpoint String Yes N/A { reportingEndpoint: 'https://url.to.report.to/analytics' }
loggerCallback Function No () => {} { loggerCallback: (error) => console.error(error) }
sampleRate Integer No 100 { sampleRate: 5 }
reportParams Object No undefined { reportParams: { pageType: 'STY' }

Usage

The hook can be configured in a number of ways:

  • enabled - setting this to true will enable sending these metrics to the reporting endpoint. This is so that the reporting functionality can be turned on only when users have agreed to the appropriate privacy and tracking settings where appropriate.
  • reportingEndpoint - the endpoint you wish to send your metrics to
  • loggerCallback - a function that will be called whenever an attempt to send the metrics fails.
  • sampleRate - providing a number between 1-100 will set the percentage of sampling, to prevent overloading the backend reporting server. e.g. a sampleRate of 5 will mean that metrics for 5% of requests will be sent to the reporting server.
  • reportParams - an object that will define query string parameters appended to the reporting endpoint. As an example, providing { pageType: 'STY' } will cause ?pageType=STY to be appended to the reporting endpoint.
import useWebVitals from "@bbc/web-vitals";
import logger from "./logger";

const Page = props => {
  const enabled = isOnClient() && hasUserAcceptedTracking();
  useWebVitals({
    enabled,
    reportingEndpoint: 'https://url.to.report.to/analytics',
    loggerCallback = logger.error,
    sampleRate: 50,
    reportParams: { pageType: 'STY' },
  });

  return (
    <PageComponents />
  );
};

When to use this utility

This utility should ideally be used as close to the top-level of your app as is practical. You should follow due diligence in regards to checking if your site visitor needs to accept any personalisation or tracking permissions under relevant local laws, and use this in determining the value of the enabled prop.

useEffect hooks are only run client-side, but when using this hook in combination with Server Side Rendering, you may wish to also include a check of whether the code is running client-side in order to ensure that you do not get inconsistencies between your server's capabilities and the user's.

When not to use this utility

In non-page-level components, especially where these components may be added multiple times to a page.

In situations where users have not provided permission for the relevant personalisation or tracking permissions that may be required under relevant local laws.

Contributing

Web Vitals is completely open source. We are grateful for any contributions, whether they be new utilities, bug fixes or general improvements. Please see our primary contributing guide which can be found at the root of the Web Vitals repository.

Code of Conduct

We welcome feedback and help on this work. By participating in this project, you agree to abide by the code of conduct. Please take a moment to read it.

License

Web-Vitals is Apache 2.0 licensed.

Readme

Keywords

none

Package Sidebar

Install

npm i @bbc/web-vitals

Weekly Downloads

303

Version

2.0.1

License

Apache-2.0

Unpacked Size

37.2 MB

Total Files

1044

Last publish

Collaborators

  • news-vj-bot
  • silver-jenkins
  • bbc-web-core
  • ibl-jenkins
  • iplayer-web-jenkins
  • sport-web-jenkins
  • bbcconnections
  • bbc-gnl-ci
  • bbc-morph
  • itv-ci-machine
  • audienceplatformdev
  • bbc-archivesearch-development-team
  • sounds-web-jenkins
  • rmsdev
  • bbc-voice-pipeline
  • weather-jenkins
  • newslabs-jenkins
  • api-management-jenkins
  • mdtbuild
  • bbc-online
  • cps-support
  • bbc-cd-jenkins
  • locator-deploy
  • bbc-isite
  • travel-jenkins
  • participation-jenkins
  • bbc-news-jenkins
  • bbcrd
  • ibl
  • iplayerradio-aws
  • media-playout-jenkins
  • partner-platform-jenkins
  • bbc-admin
  • gel-jenkins
  • pcs-amp-jenkins
  • education-jenkins
  • insyn-jenkins
  • kite-jenkins
  • bbcrd-artifactory
  • iplayer-pc-downloads-pipeline-bot
  • eagerterrier_bbc