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

fast-ops-url-probe-cli

v0.1.3

Published

CLI for fast URL reachability and gateway failure triage.

Readme

fast-ops-url-probe-cli

CLI for fast URL reachability checks and first-response triage for 5xx and network failures.

Install

npm i -g fast-ops-url-probe-cli

Or run without install:

npx --yes fast-ops-url-probe-cli https://example.com

What It Gives You

  • DNS resolution details (hostname and resolved addresses)
  • HTTP status, redirect chain, headers, latency
  • Failure classification (for example bad_gateway, gateway_timeout, dns_resolution_failure)
  • Optional side-by-side compare mode for origin vs proxy or internal vs external paths
  • Next-step checks you can run immediately
  • Optional status assertion mode for quick pass/fail automation

Usage

fast-url-probe <url> [--compare <url>] [--json] [--timeout <ms>] [--max-redirects <n>] [--method <verb>] [--header <key:value>] [--expect-status <code>] [--insecure]

Quick Examples

Basic probe:

fast-url-probe https://example.com/health

JSON output for scripts:

fast-url-probe https://example.com/health --json

Check proxy vs origin behavior:

fast-url-probe "http://origin.local/health" --compare "https://proxy.example.com/health" --expect-status 200 --json

Probe with method and header override:

fast-url-probe "https://proxy.example.com/api/stacks/demo/up?env=1" --method POST --header "Accept: application/json" --timeout 45000 --json

Exit Codes

  • 0: Probe completed and assertions (if any) passed
  • 1: Argument or execution error
  • 2: --expect-status assertion failed

Node Version

Node.js 20 or later.