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 🙏

© 2024 – Pkg Stats / Ryan Hefner

seo-spider

v1.1.1

Published

Crawl websites and generate SEO reports

Downloads

6

Readme

License: ISC Build Status

SEO Spider

A CLI spider for crawling websites and exporting the results as JSON or CSV files. Included functionality:

  • Extract Headers
  • Extract Meta Tags
  • Exclude internal URLs
  • Allow crawling multiple domains
  • Capture in and out links
  • Rate limiting and retries

Installation

Install globally with:

npm i seo-spider -g

or use with npx:

npx seo-spider https://mysite.com

Use

Usage: seo-spider [options] <startUrl>

Crawl websites and extract relevant information including metadata and in/out links

Arguments:
  startUrl                                                 The start URL for the crawl

Options:
  -V, --version                                            output the version number
  -a, --allowed-hosts <allowedHosts>                       The list of hosts which will be crawled. The hostname of the start URL will be added to this list
  -d, --debug                                              Enable debug logging
  -e, --extract-headers <extractHeaders>                   Header names to extract from the response
  -m, --extract-meta-tags <extractMetaTags>                Meta tags to extract from the response HEAD
  -c <maxConnections>, --max-connections <maxConnections>  The maximum number of connections, 10 by default
  --referer <referer>                                      Set the referrer header on the requests
  --retry-timeout <retryTimeout>                           Set the retry timeout for the requests
  -i, --ignore-hosts <ignoreHosts>                         A comma separated list of hostnames to ignore and neither crawl nor check
  -x, --ignore-external                                    Ignore all external hosts, external hosts will neither be crawled nor checked
  -p, --ignore-pattern <ignorePattern>                     Ignore urls matching the specified pattern. These urls will neither be crawled nor checked
  -l, --rate-limit <rateLimit>                             the rate limit in milliseconds
  -t, --timeout <timeout>                                  the maximum duration before a request will be aborted in milliseconds
  -u, --user-agent <userAgent>                             Set the user-agent header (default: "SEO-Spider/1.0.0")
  --link-selector <linkSelector>                           Override the link selector
  --resource-link-selector <resourceLinkSelector>          Override the resource link selector
  --media-link-selector <mediaLinkSelector>                Override the media link selector
  --output-csv <directory>                                 Write the output as CSV files to the specified directory
  --output-json [type]                                     Write the output a JSON file
  --config <config>                                        Use a configuration JSON file
  -h, --help                                               display help for command

Configuration JSON

To support reusing parameters, specify a JSON file with the --config option, for example:

npx seo-spider --config config.json http://mysite.com

The configuration JSON file must match the schema of the SeoSpiderOptions