Latest Socket ResearchMalicious Chrome Extension Performs Hidden Affiliate Hijacking.Details
Socket
Book a DemoInstallSign in
Socket

pwmetrics-helper

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pwmetrics-helper

Helpers for working with the pwmetrics package (using Lighthouse)

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Helpers for getting values of specific Progressive Web App metrics

The pwmetrics module exposes the ability to get use performance metrics out of Lighthouse. This includes the ability to perform multiple runs. This module provides a simple API on top of pwmetrics for plucking out values of specific metrics.

Install

$ npm install --save pwmetrics-helper

Usage

desiredMetric

The desiredMetric field takes one of the following metrics and will return just that value from the median runs:

  • 'First Contentful Paint'
  • 'First Meaningful Paint'
  • 'Perceptual Speed Index'
  • 'First Visual Change'
  • 'Visually Complete 100%'
  • 'Time to Interactive'
  • 'Visually Complete 85%'

Perform 3 runs (the default) and just return time-to-interactive:

const getMetrics = require('pwmetrics-helper');

getMetrics('https://airhorner.com', {
    desiredMetric: 'Time to Interactive'
}).then(score => {
    // do something with the score
});

Perform 2 runs and just return first-contentful-paint

const getMetrics = require('pwmetrics-helper');

getMetrics('https://airhorner.com', {
    runs: 2,
    desiredMetric: 'First Contentful Paint'
}).then(score => {
    // do something with the FCP
});

Perform 3 runs and return the entire JSON payload from pwmetrics

const getMetrics = require('pwmetrics-helper');

getMetrics('https://airhorner.com').then(data => {
    // do something with the data
});

runs

runs specifies the number of runs of Lighthouse to perform via pwmetrics before a median score is returned. This module generally defaults to 3 runs.

License

Apache 2.0. Google Inc.

Keywords

lighthouse

FAQs

Package last updated on 24 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts