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

seo-do

v2.2.0

Published

CLI tool for crawling, auditing, and analyzing SEO signals on small websites

Downloads

743

Readme

seo-do

A CLI tool that automates the tedious parts of daily SEO work:

  • Crawl a site and collect every page
  • Audit title, description, headings, canonical, structured data, GA4/GTM — exported as CSV
  • Download and search sitemaps locally
  • Download and audit robots.txt — parse rules into structured CSV
  • Track changes over time with dated project runs — compare today vs yesterday
  • Archive TDK history so you know exactly when a title or description changed

No browser needed. No database. Just plain files you can open in any spreadsheet.

Install

Global (recommended):

npm install -g seo-do

Local (within a project):

npm install seo-do
npx seo-do pages crawl https://www.example.com

From source (development):

git clone https://github.com/wahengchang/seo-do.git
cd seo-do
npm install
npm run build
npm link

Basic Usage

seo-do pages crawl https://www.example.com
seo-do pages audit ./state/done.txt

Output: ./state/audit.csv

All Commands

| Command | Description | |---------|-------------| | pages crawl <url> | Crawl same-origin pages by following links | | pages audit <file> | Run SEO audit on a URL list, output CSV | | sitemap download/stats/search/audit | Download, inspect, and audit sitemaps | | robots download <url> | Download robots.txt from a domain | | robots audit <url> | Parse robots.txt rules into CSV | | project create/list/delete | Manage named projects | | project pages crawl/audit <name> | Crawl and audit a project by name (dated output) | | project sitemap download/stats/search/audit <name> | Sitemap tools for a project (dated output) | | project diff <name> | Compare consecutive runs and report changes (diff CSV) | | project runs <name> | List all past runs for a project |

seo-do --help

Docs

Detailed usage guides are in the docs/ folder:

Requirements

  • Node.js 22+
  • npm

Dev Mode

npm run dev -- pages crawl https://www.example.com
npm test

Links

License

MIT