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

@jordanmgsoftware/seo-cli

v0.1.3

Published

SOTA SEO CLI for MG Software projects: crawl, audit, link graph, anti-spam (March 2026), GEO/AEO, programmatic SEO checks. Runs on production URLs, localhost, or build output.

Readme

@jordanmgsoftware/seo-cli

SOTA SEO CLI by MG Software — runs on production URLs, localhost, or build output.

# add to a Next.js project
bun add -d @jordanmgsoftware/seo-cli
bun run mg-seo init
bun run seo-audit

# global / direct usage
bun add -g @jordanmgsoftware/seo-cli   # or: npm i -g @jordanmgsoftware/seo-cli
mg-seo init                      # generate mg-seo.config.ts
mg-seo crawl https://example.com
mg-seo crawl http://localhost:3000
mg-seo audit https://example.com
mg-seo audit http://localhost:3000 --auto-start
seo-audit                        # defaults to http://localhost:3000 + auto-start
mg-seo links https://example.com
mg-seo report

Why

A pragmatic, code-first alternative to Screaming Frog / Sitebulb that:

  • Lives in your dev loop — works on localhost and on built static output (e.g. .next, dist/)
  • Integrates with CI — exit codes, JUnit XML, GitHub Action templates
  • 2026-current — checks for Google's March 2026 Spam Update, INP-as-primary-signal, GEO/AEO readiness, llms.txt
  • First-class programmatic SEO — MinHash-based template uniqueness detection (the exact thing Google now penalises)
  • Code-first configmg-seo.config.ts, type-safe, per project
  • Zero-config Next.js loop — add the package, run bun run seo-audit, and the CLI starts localhost when needed

Commands (v0.2)

| Command | Purpose | |---|---| | mg-seo init | Scaffold mg-seo.config.ts | | mg-seo crawl <source> | Spider crawl with sitemap + robots discovery | | mg-seo audit <source> | Run all rules (on-page, links, schema, content, technical) | | seo-audit [source] | Local-first audit that auto-starts a dev server when needed | | mg-seo links <source> | Internal link graph (orphans, broken, redirect chains, depth) | | mg-seo report | Aggregate latest results into a markdown / HTML report |

Rule categories

| Category | Coverage | |---|---| | on-page | titles, meta description, H1, headings, image alt/dimensions, canonical, hreflang, OG, viewport, lang, noindex, status codes, redirect chains | | links | orphans, broken internal links, click depth, generic anchor text | | schema | JSON-LD presence, valid JSON, required properties for Article/Product/FAQ/Organization/Breadcrumb/Recipe/Event/Person/JobPosting and more | | content | thin content (word count), text-to-HTML ratio, identical body content, title keyword cannibalisation (Jaccard ≥ 0.8) | | technical | robots.txt present, XML sitemap discoverable, sitemap coverage of crawled pages |

<source> accepts:

  • A URL (https://example.com) — production crawl
  • A localhost URL (http://localhost:3000) — dev server crawl
  • A directory (./dist, ./out, ./.next/server/pages) — static output crawl (roadmap)

Development

:: One-shot run from source (no build needed)
dev.cmd audit https://example.com --max-pages 20
dev.cmd links http://localhost:3000

:: Full toolchain
bun install
bun run dev -- audit https://example.com
bun run seo-audit
bun run build
bun run typecheck

Roadmap

  • ✅ v0.1 — init, crawl, audit, links, report (on-page + link rules)
  • ✅ v0.2 — schema, content, technical (robots/sitemap) rule categories
  • v0.3 — pseo + spam (March 2026 policies, MinHash near-dup detection)
  • v0.4 — perf (Lighthouse-Node + PSI optional), geo (AEO/AI Overview readiness), llms.txt
  • v0.5 — Playwright optional rendering, watch, diff, ci, HTML reporter, JUnit XML
  • v1.0 — Bun standalone binary, GitHub Action template

© MG Software B.V.