logo

Follow

Automate Lighthouse Report with Puppeteer [Production]

This automation, using Puppeteer to automate Lighthouse report generation, ensures consistent and timely performance insights for our application, allowing us to proactively address any issues and maintain optimal performance.

Blog post by Mohit kandhari - Published at 7/15/2024, 4:24:04 PM

Install Required Packages: Make sure you have Node.js installed, and then install the necessary packages: puppeteer, lighthouse, and chrome-launcher.

``

npm install puppeteer lighthouse chrome-launcher

``

Create a Script: Create a JavaScript file (e.g., index.mjs) and add the following code to automate the Lighthouse report generation:

``

Run the Script: Execute the script using Node.js.

node index.js

For reference: https://github.com/cwmohit/Automate-lighthouse-report-with-puppeteer

Clone the repository:


git clone https://github.com/cwmohit/Automate-lighthouse-report-with-puppeteer.git

cd Automate-lighthouse-report-with-puppeteer

npm install

Add .env file:

APP_EMAIL=example@gmail.com
APP_PASSWORD=asdfghjkjhgfds
SEND_TO_EMAIL=example2@jiraaf.com
APP_WEBSITE=https://www.example.com/
APP_NAME=example

Run the Project:

node index.mjs


Enjoyed this article?

Leave a comment below!


Comments


Created by cwmohit♥