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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@forgedock/fd-fastest-cli

v1.0.14

Published

CLI for FD-Fastest performance testing toolkit

Readme

@forgedock/fd-fastest-cli

Command-line orchestrator for the FD-Fastest performance testing toolkit. The CLI wraps Playwright-driven lab runs, configuration discovery, and report generation so you can measure Next.js applications end to end.

Features

  • ⚙️ Commander-based CLI with fd-fastest lab and fd-fastest init
  • 🌐 Playwright automation with device + network throttling
  • 📊 Web Vitals aggregation from @forgedock/fd-fastest-runtime-next
  • 📦 JSON report generation using @forgedock/fd-fastest-reporter-json
  • 🪵 Git context capture for every run

Usage

pnpm install
pnpm --filter @forgedock/fd-fastest-cli build

# scaffold config
pnpm fd-fastest init

# run lab tests (ensure your app is running locally)
pnpm fd-fastest lab

Use fd-fastest lab --config path/to/config.ts to target a custom configuration file. Reports are written to the directory defined in the config (reports by default) and include a trace archive plus budget validation output.

Simulated Interactions (INP)

Lab runs now perform lightweight, configurable user interactions so Interaction to Next Paint (INP) is populated without manual scripting. Tune the behaviour via the interactions block in your config:

export default {
  // ...
  interactions: {
    enabled: true,
    strategy: 'first-clickable', // 'selector' or 'random'
    // selector: '#primary-cta', // required when strategy === 'selector'
    interactionTypes: ['click', 'keypress'],
    waitAfterHydration: 1000,
    postInteractionDelay: 750,
  },
};

The CLI waits for hydration, executes the requested actions (click, keypress, input), and then allows a short buffer so web-vitals can report INP. Disable the block entirely (enabled: false) if your app has its own scripted interactions.

Turbopack Bundle Analysis

When next.analyzeBundles is enabled, the CLI automatically inspects Turbopack production builds by reading the manifests under .next/turbopack. Disable this behaviour with next.turbopackBundleAnalysis = false if you only want classic webpack manifest parsing.

PageSpeed Insights

Enable PSI collection to fold Google PageSpeed Insights field and lab data into every report:

export default {
  // ...
  psi: {
    enabled: true,
    strategy: 'mobile', // or 'desktop'
    // apiKey: 'your-api-key', // optional when PSI_API_KEY env var is set
  },
};

Supply the API key either in the config or via the PSI_API_KEY environment variable. The CLI requests one PSI run per unique URL using the configured strategy (default mobile) and merges the first successful result into report.json.

Troubleshooting

  • Missing API key – the CLI logs an error and skips PSI without failing the run.
  • PSI API errors – network or quota issues surface as warnings but do not block report generation.
  • Slow responses – PSI requests run sequentially with a short delay to respect rate limits; large URL sets may take longer to complete.