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

seoscan

v1.2.0

Published

Full SEO audit CLI — one command to audit any website

Downloads

47

Readme

seoscan

Full SEO audit from the terminal. One command, zero config.

Stop paying $200/mo for bloated SEO tools. Audit any website in seconds — meta tags, performance, security headers, broken links, structured data, content quality — and get AI-powered fix suggestions.

Installation

npm install -g seoscan
# or run directly without installing:
npx seoscan report https://yoursite.com

Requirements: Node.js >=18

🚀 Flagship Features

1. The Full Report

Run a comprehensive SEO audit in one command. It scores your site (0-100) and grades it across 9 critical categories.

seoscan report https://yoursite.com

2. Monitor & Regression Detection

Track your SEO score over time. seoscan saves historical snapshots locally and alerts you if your score drops below a specific threshold.

# Take a snapshot and compare with previous
seoscan monitor https://yoursite.com

# View history and trend
seoscan monitor https://yoursite.com --history

# Export history to Excel (Pro)
seoscan monitor https://yoursite.com --history --export xls

3. AI-Powered Fixes

Don't just find issues—fix them. seoscan uses AI to generate actionable, copy-paste fixes for every problem found (e.g., rewriting meta tags, generating Apache/Nginx header configs).

export OPENAI_API_KEY="sk-..."
seoscan fix https://yoursite.com

4. Generative Engine Optimization (GEO)

Test if AI search engines (like Perplexity) recommend your website for specific keyword queries, and score your brand's visibility.

export PERPLEXITY_API_KEY="pplx-..."
seoscan geo https://yoursite.com "best web design agency" --lang en

🛠️ Core Commands

You can run individual checks to focus on specific areas:

| Command | Description | |---------|-------------| | seoscan meta <url> | Meta tags, headings, Open Graph, Twitter Cards | | seoscan performance <url> | Page load speed, compression, render-blocking resources | | seoscan links <url> | Internal/external links, broken links, redirects | | seoscan images <url> | Alt text, dimensions, modern formats, lazy loading | | seoscan headers <url> | Security headers (CSP, HSTS) + cache policy | | seoscan sitemap <url> | Validate sitemap.xml structure and URLs | | seoscan robots <url> | Parse robots.txt, check rules and directives | | seoscan structured <url> | JSON-LD, Microdata, Schema.org validation | | seoscan content <url> | Readability, keyword density, word count, thin content | | seoscan crawl <url> | Deep crawl — broken links, orphan pages, redirect chains | | seoscan compare <u1> <u2> | Side-by-side SEO comparison of two URLs |


📊 Exporting Data

Easily export your audit results to pipe into other tools or share with clients.

# Export to CSV (Free)
seoscan report https://yoursite.com --export csv

# Export to JSON
seoscan report https://yoursite.com --export json > audit.json

# Export to Excel (Pro)
seoscan report https://yoursite.com --export xls

💎 Pro License

seoscan operates on a freemium model. The Free Tier allows standard audits, AI fixes, GEO testing, and CSV exports (capped rows).

The Pro Tier unlocks:

  • 📊 Excel (XLS) exports for deep data manipulation
  • 📈 Unlimited monitor history snapshots
  • 🚀 Full CSV exports without row limits

(To unlock Pro, you need a Recognity CLI License Key, shared with Intelwatch).


⚙️ Configuration & API Keys

seoscan brings your own keys (BYOK) for AI and GEO features. Set these in your environment variables (~/.bashrc or ~/.zshrc):

# Required for `seoscan fix` (Choose one)
export OPENAI_API_KEY="sk-..."
export ANTHROPIC_API_KEY="sk-ant-..."

# Required for `seoscan geo`
export PERPLEXITY_API_KEY="pplx-..."

🔒 Privacy & Architecture

  • No intermediary servers: The CLI talks directly to the websites and AI providers (OpenAI, Anthropic, Perplexity). We do not see your API keys or your audits.
  • Local-first: Monitor history and settings are stored locally in ~/.seoscan/.
  • Respectful crawling: The crawl command uses standard delays and user-agents to avoid overloading servers.

License

MIT