npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@c2l2c/backstage-plugin-dora-metrics

v0.1.0

Published

A Backstage frontend plugin that displays DORA metrics (Deployment Frequency, Lead Time, Change Failure Rate, MTTR) for catalog entities via the GitHub API.

Downloads

83

Readme

@c2l2c/backstage-plugin-dora-metrics

A Backstage frontend plugin that displays DORA metrics for catalog entities using the GitHub API.

Tracks the four key DORA metrics:

  • Deployment Frequency — how often you deploy to a given branch
  • Lead Time for Changes — time from first commit to merge
  • Change Failure Rate — percentage of deployments causing failures (production only)
  • MTTR — mean time to recovery from failures (production only)

Ratings are classified as Elite / High / Medium / Low per DORA research benchmarks.


Requirements

  • Backstage v1.35+ (new frontend system)
  • GitHub OAuth configured in your Backstage instance (the plugin uses githubAuthApi to call the GitHub REST API)
  • Catalog entities annotated with github.com/project-slug: org/repo

Installation

# In your Backstage app workspace
yarn workspace app add @c2l2c/backstage-plugin-dora-metrics

Register the plugin

In packages/app/src/App.tsx:

import doraMetricsPlugin from '@c2l2c/backstage-plugin-dora-metrics/alpha';

// Add to your app's plugins array
const app = createApp({
  plugins: [doraMetricsPlugin],
  // ...
});

Configuration

Add to your app-config.yaml:

app:
  doraMetrics:
    # Lookback window in days (default: 30)
    collection:
      initialDays: 30

    # Define the environments / branches to track
    environments:
      - name: Production
        branch: main
        isProduction: true
        label: hotfix          # PR label for production failures (used for CFR/MTTR)
      - name: Staging
        branch: staging
        isProduction: false

    # Optional: override DORA benchmark targets
    targets:
      deploymentFrequency: 1   # deploys per day (Elite ≥ 1)
      leadTime: 24             # hours (Elite ≤ 24h)
      changeFailureRate: 5     # % (Elite ≤ 5%)
      mttr: 1                  # hours (Elite ≤ 1h)

How it works

The plugin reads the github.com/project-slug annotation from the catalog entity and calls the GitHub REST API (authenticated via the user's GitHub OAuth session) to fetch merged pull requests within the configured time window.

It calculates:

  • Deployment Frequency: merged PRs per day to the target branch
  • Lead Time: time from PR creation to merge
  • CFR: percentage of PRs labelled as hotfixes (production environments only)
  • MTTR: average time hotfix PRs were open (production environments only)

License

Apache-2.0