- Define your test suites with multiple urls and baseline configs.
- Get a complete score report and alerts on email and slack by just calling a single endpoint.
- Detect what changes are causing the performance drops by adding the tool to your CI/CD workflows.
- Easy to use Web UI for querying config and triggering tests.
- Open source, reliable, scalable, ready to self host. 🚀
- Must have node installed v16 or above
- Must have redis installed if you want to setup locally, tool internally uses redis-smq.
- Create a
.env
file by copying contents fromsample.env
and provide the required env variables. - Set the config for your website in the
store/index.ts
file, add the urls you want to test and set a baseline score for different urls based on devices, set alert config for email and slack. Sample config below to use as a reference.
- Using server
- Start the local
redis-server
- Start the server :
npm run build
andnode dist/index.js
.
- Using docker (Recommended)
- Make sure docker is installed
- Run :
docker compose up
GET /api/trigger?apiKey=<your_api_key>
to trigger the performance tests, after completion of report you receive reports on your alertConfigs like email and slack channel.
Get realtime update on status by establishing a socket connection with the server, by first initiating a socket connection request to /socket.io
endpoint and then emitting a join
event with body as {"clientId" : "your_api_key"}
, this will give realtime updates as your workflow goes through different processing.
GET /api/status?apiKey=<your_api_key>
to poll for status of the running tests.
The tool is pre configured to use Performance
as the default category for test and Desktop
as the default startegy, you can provide query params in API Get Request to change the behaviour.
For eg : GET /api/trigger/YOUR_CONFIG_ID?category=performance,seo&startegy=mobile
, this will respond with a report containing both performance and seo score of the urls for mobile strategy.
import { PSIStrategy } from '../types';
export const baselineStore = [
{
id: 'DA0524CF-3073-4346-ACDA-F5816650FE8A', // acts like a primary key for a test suite
[PSIStrategy.MOBILE]: {
baselineConfig: [
{
url: 'https://www.google.com', // url from configStore urls array
performance: 0.9, // score category key like performance, seo, accessibility , best-practises
},
{
url: 'https://www.docs.google.com',
performance: 0.75,
seo: 0.8,
},
],
},
[PSIStrategy.DESKTOP]: {
baselineConfig: [
{
url: 'https://www.google.com',
performance: 0.8,
},
{
url: 'https://www.docs.google.com',
performance: 0.65,
seo: 0.8,
},
],
},
},
];
export const configStore = [
{
id: 'DA0524CF-3073-4346-ACDA-F5816650FE8A', // ID (can be any string) for associating baseline with config
urls: ['https://www.google.com', 'https://docs.google.com'], // urls to be included in the test suite
alertConfig: {
email: {
id: 'your@email.com', // insert a valid email ID where you would like to get alerts
enabled: true, // email alerts enabled
},
slack: {
id: 'slack_channel_url', // insert a slack webhook url to post data to
enabled: false, // slack alerts disabled
},
},
},
];
Every contribution counts!
- Create a fork and checkout a branch different from main
- Create an issue if the issue you are trying to solve does not exists.
- Open a PR and wait for review.
if not issue_exists:
open_issue()
assign_issue('yourself')
create_fork()
checkout_branch('not-main')
open_pr('issue-id')
The tool internally uses message queue to handle the flow of a test suite, the message passes through three different queues:
- trigger ‣ fetches lighthouse scores
- compare ‣ compares latest scores with baseline config
- alert ‣ sends alerts to different channels based on alert config
This queue system makes the system performant, reliable (retrying unacknowledged/failed messages) and scalable, the three services are decoupled and makes the system flexible to adapt changes easily.