Display your website's performance metrics in your GitHub README.
A lightweight tool focused solely on analyzing and visualizing website performance, embeddable anywhere—including your GitHub profile README! Supports personal websites, organizations, and even repositories.
- Analyze any public website
- Measure Core Web Vitals using Lighthouse
- Generate an embeddable SVG card with performance scores
- Automate generation with GitHub Actions / GitLab CI
- Simple to integrate into your README
-
Install dependencies:
npm install
-
Run locally:
URL=https://www.wikipedia.org npm start
-
Or generate it daily using GitHub Actions
-
Clone the repo.
-
Edit the URL in .github/workflows/generate-card.yaml:
env: URL: 'https://www.wikipedia.org'
-
Ensure GitHub Actions has permission to read and write to your repository.
- Or generate it daily using GitLab CI
- Clone the repo.
- Edit the URL in .gitlab-ci.yaml:
variables:
URL: 'https://www.wikipedia.org'
THEME: 'transparent' # Can be overridden to "dark" or "transparent"
-
Create a Personal Access Token (PAT) on GitLab
- Go to your GitLab profile → Preferences → Access Tokens
- Create a token with the following scopes: api, write_repository
- Copy the token — you won’t be able to see it again.
-
Add it as a GitLab CI/CD secret variable
- Go to your project → Settings → CI/CD → Variables.
- Add a new variable:
- Key: CI_PUSH_TOKEN
- Value: (paste your PAT here)
- Scope: All environments (default)
-
Add a Scheduled Pipeline in GitLab:
- Go to your project → Build → Pipeline schedules
- Click "Create a new pipeline schedule"
- Set the description, timezone and interval : 0 0 * * *
- Save it

- Node.js
- Puppeteer + Lighthouse
- node-canvas
- TypeScript
- GitHub Actions
- GitLab CI
MIT