Socket
Socket
Sign inDemoInstall

adviser-plugin-lighthouse

Package Overview
Dependencies
6
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    adviser-plugin-lighthouse

Plugin for adviser to run lighthouse audits on a given URL


Version published
Weekly downloads
26
increased by13.04%
Maintainers
1
Install size
60.8 MB
Created
Weekly downloads
 

Readme

Source

adviser-plugin-lighthouse

Plugin for adviser to run lighthouse audits and score checking on a given URL

  • Installation
  • Usage
  • Tests
  • Contributing
  • Support
  • License

Installation

You'll first need to install Adviser:

$ npm i adviser --save-dev

Next, install adviser-plugin-lighthouse:

$ npm install adviser-plugin-lighthouse --save-dev

Note: If you installed Adviser globally (using the -g flag) then you must also install adviser-plugin-lighthouse globally.

Usage

Add lighthouse to the plugins section of your .adviserrc configuration file. You can omit the adviser-plugin- prefix:

{
  "plugins": ["lighthouse"]
}

Then configure the rules you want to use under the rules section.

{
  "rules": {
    "lighthouse/scores": [
      "error",
      {
        "best-practices": 1,
        "pwa": 0.8,
        "seo": 1,
        "accessibility": 1,
        "performance": 0.9
      }
    ],
  }
}

If you don't have a .adviserrc you can create one running $ adviser --init

Full example

{
  "plugins": ["lighthouse"],
  "rules": {
    "lighthouse/scores": [
      "error",
      {
        "best-practices": 1,
        "pwa": 1,
        "seo": 1,
        "accessibility": 1,
        "performance": 1
      }
    ],
    "lighthouse/audits": [
      "error",
      {
        "mainthread-work-breakdown": 1,
        "not-a-valid-audit": 1
      }
    ]
  }
}

Tests

If you would like to contribute and later on test your changes there are a couple ways explained below.

Unit code

The package (adviser-plugin-lighthouse) is setup to run tests under the folder __tests__ with Jest. Save your tests there and they will run before each code push and by travis once the PR is created.

Integration tests

To run your rules with adviser, we recommend you to create an empty folder (We have one under ./examples/integration) with:

  • An example package.json
  • An adviser configuration file. You can grab the example in this README or generate one using $ adviser --init (adviser must be installed globally or using npx)
  • Link this repo to the example project.
    • Run $ npm link in the adviser-plugin-lighthouse root
    • Run $ npm link adviser-plugin-lighthouse in the example project root

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests.

Supported Rules

  • scores - Inspect the global lighthouse scores
  • audits - Inspect the individual lighthouse audits result

License

MIT

FAQs

Last updated on 07 Jan 2020

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc