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

@umutdev/fpd-cli

v1.0.3

Published

Developer-first CLI for frontend performance analysis, root cause detection, and source code correlation.

Readme

Frontend Performance Debugger CLI

Developer-first CLI for analyzing frontend performance, identifying bottlenecks, extracting root causes, and correlating runtime issues with local source code.

Unlike generic audit tools, FPD is designed to help you move from finding to debugging by combining runtime analysis, prioritization, framework awareness, and source-level hints in one workflow.

Install

npm install @umutdev/fpd-cli

If needed:

npx playwright install chromium

Usage

Analyze a live URL:

fpd analyze https://example.com

Analyze with verbose output:

fpd analyze https://example.com --verbose

Analyze localhost:

fpd analyze http://localhost:3000

Analyze localhost with source correlation:

fpd analyze http://localhost:3000 --project . --verbose

Export JSON:

fpd analyze https://example.com --format json --output report.json

Export Markdown:

fpd analyze https://example.com --format markdown --output report.md

Scan local source code:

fpd scan .

List analyzers:

fpd analyzers

Why use FPD?

FPD is built for developers who need more than metrics or a generic audit.

It helps you:

  • analyze frontend behavior in a real browser session
  • turn raw observations into structured, actionable findings
  • identify root causes instead of only listing symptoms
  • understand where performance is being lost through score breakdowns
  • map runtime issues back to likely source files when a project path is available

In short, FPD is designed for a practical workflow from analysis to triage to fixing.

What makes it different?

Most performance tools are strong in one area, such as metrics, audits, or static analysis.
FPD is built to connect those layers into a developer workflow.

Unique strengths

  • Runtime + source correlation
    Analyze a live URL and correlate findings with likely source files in the local project.

  • Root-cause-focused reporting
    Highlights the underlying bottlenecks behind multiple findings instead of only showing a flat issue list.

  • Framework and route awareness
    Detects the project's framework dynamically and identifies likely route-related source files for more relevant reporting.

  • Developer-first terminal output
    Presents score, breakdown, root causes, findings, source hints, and snippets in a format optimized for debugging.

  • Actionable findings
    Findings include severity, impact, confidence, recommendation, and priority — not just raw metrics.

  • Works across local and deployed workflows
    Useful for production URLs, localhost environments, source correlation, and static project scans.

In practice

FPD helps answer:

  • What is actually slow?
  • What matters most?
  • What should I fix first?
  • Where in the project should I start looking?

Feature summary

| Capability | Status | | ------------------------------------ | ------ | | Live URL analysis | ✅ | | Real browser analysis via Playwright | ✅ | | Performance findings | ✅ | | Network findings | ✅ | | Asset findings | ✅ | | Cache findings | ✅ | | Render-blocking detection | ✅ | | Security / SEO checks | ✅ | | Score generation | ✅ | | Score breakdown | ✅ | | Root cause extraction | ✅ | | Framework detection | ✅ | | Route detection | ✅ | | Source correlation | ✅ | | JSON output | ✅ | | Markdown output | ✅ |

Output formats

  • terminal
  • json
  • markdown

Repository

https://github.com/umutdemr/frontend-performance-debugger

License

MIT