🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@alheimsins/webquality

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alheimsins/webquality

Test your site using Lighthouse and Security Headers

latest
Source
npmnpm
Version
2.0.7
Version published
Maintainers
2
Created
Source

js-standard-style

webquality

Check your site using Lighthouse and Security Headers

This will measure performance, accessibility, best practices, SEO and security.

If your score is 90+ in all categories you probably have happy users. If not: do better :-)

Usage

Supply the url to a webpage and wait for results.

Depending on your site tests typically will run for 10 - 20 seconds.

(async () => {
  const wq = require('@alheimsins/webquality')
  const results = await wq('https://www.google.com')
  console.log(results)
})()

returns

[
  {
    "id": "performance",
    "title": "Performance",
    "score": 100
  },
  {
    "id": "accessibility",
    "title": "Accessibility",
    "description": "These checks highlight opportunities to [improve the accessibility of your web app](https://developers.google.com/web/fundamentals/accessibility). Only a subset of accessibility issues can be automatically detected so manual testing is also encouraged.",
    "score": 60,
    "manualDescription": "These items address areas which an automated testing tool cannot cover. Learn more in our guide on [conducting an accessibility review](https://developers.google.com/web/fundamentals/accessibility/how-to-review)."
  },
  {
    "id": "best-practices",
    "title": "Best Practices",
    "score": 92
  },
  {
    "id": "seo",
    "title": "SEO",
    "description": "These checks ensure that your page is optimized for search engine results ranking. There are additional factors Lighthouse does not check that may affect your search ranking. [Learn more](https://support.google.com/webmasters/answer/35769).",
    "score": 90,
    "manualDescription": "Run these additional validators on your site to check additional SEO best practices."
  },
  {
    "id": "securityheaders",
    "title": "Security",
    "score": 0,
    "grade": "F",
    "description": "Security Headers https://securityheaders.com is created by Scott Helme https://scotthelme.co.uk/ to drive up the usage of security based headers across the web."
  }
]

Throws error if any of the tests fails.

Development

If you need to see the logs you can add debug to your environment.

(async () => {
  process.env.debug = true
  const wq = require('@alheimsins/webquality')
  const results = await wq('https://www.google.com')
  console.log(results)
})()

License

MIT

About

Created with ❤ for Alheimsins

Keywords

web

FAQs

Package last updated on 27 Dec 2021

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