百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
S

supercrawler

> 编程语言
开源

一个 Web 爬虫。 Supercrawler 会自动爬取网站。定义自定义处理程序以解析内容。遵循 robots.txt、速率限制和并发限制。

381 stars0 点赞1 次浏览
访问官网GitHub

工具介绍

一个 Web 爬虫。 Supercrawler 会自动爬取网站。定义自定义处理程序以解析内容。遵循 robots.txt、速率限制和并发限制。

Node.js Web Crawler

Supercrawler is a Node.js web crawler. It is designed to be highly configurable and easy to use.

When Supercrawler successfully crawls a page (which could be an image, a text document or any other file), it will fire your custom content-type handlers. Define your own custom handlers to parse pages, save data and do anything else you need.

Features

  • Link Detection. Supercrawler will parse crawled HTML documents, identify links and add them to the queue.
  • Robots Parsing. Supercrawler will request robots.txt and check the rules before crawling. It will also identify any sitemaps.
  • Sitemaps Parsing. Supercrawler will read links from XML sitemap files, and add links to the queue.
  • Concurrency Limiting. Supercrawler limits the number of requests sent out at any one time.
  • Rate limiting. Supercrawler will add a delay between requests to avoid bombarding servers.
  • Exponential Backoff Retry. Supercrawler will retry failed requests after 1 hour, then 2 hours, then 4 hours, etc. To use this feature, you must use the database-backed or Redis-backed crawl queue.
  • Hostname Balancing. Supercrawler will fairly split requests between different hostnames. To use this feature, you must use the Redis-backed crawl queue.

How It Works

Crawling is controlled by the an instance of the Crawler object, which acts like a web client. It is responsible for coordinating with the priority queue, sending requests according to the concurrency and rate limits, checking the robots.txt rules and despatching content to the custom content handlers to be processed. Once started, it will automatically crawl pages until you ask it to stop.

The Priority Queue or UrlList keeps track of which URLs need to be crawled, and the order in which they are to be crawled. The Crawler will pass new URLs discovered by the content handlers to the priority queue. When the crawler is ready to crawl the next page, it will call the getNextUrl method. This method will work out which URL should be crawled next, based on implementation-specific rules. Any retry logic is handled by the queue.

The Content Handlers are functions which take content buffers and do some further processing with them. You will almost certainly want to create your own content handlers to analyze pages or store data, for example. The content handlers tell the Crawler about new URLs that should be crawled in the future. Supercrawler provides content handlers to parse links from HTML pages, analyze robots.txt files for Sitemap: directives and parse sitemap files for URLs.

Get Started

First, install Supercrawler.

bash
npm install supercrawler --save

Second, create an instance of Crawler.

…

Third, add some content handlers.

…

Fourth, add a URL to the queue and start the crawl.

javascript
crawler.getUrlList()
  .insertIfNotExists(new supercrawler.Url("http://example.com/"))
  .then(function () {
    return crawler.start();
  });

That's it! Supercrawler will handle the crawling for you. You only have to define your custom behaviour in the content handlers.

Crawler

Each Crawler instance represents a web crawler. You can configure your crawler with the following options:

Option Description
urlList Custom instance of UrlList type queue. Defaults to FifoUrlList, which processes URLs in the order that they were added to the queue; once they are removed from the queue, they cannot be recrawled.
interval Number of milliseconds between requests. Defaults to 1000.
concurrentRequestsLimit Maximum number of concurrent requests. Defaults to 5.
robotsEnabled Indicates if the robots.txt is downloaded and checked. Defaults to true.
robotsCacheTime Number of milliseconds that robots.txt should be cached for. Defaults to 3600000 (1 hour).
robotsIgnoreServerError Indicates if 500 status code response for robots.txt should be ignored. Defaults to false.
userAgent User agent to use for requests. This can be either a string or a function that takes the URL being crawled. Defaults to Mozilla/5.0 (compatible; supercrawler/1.0; +https://github.com/brendonboshell/supercrawler).
request Object of options to be passed to request. Note that request does not support an asynchronous (and distributed) cookie jar.

Example usage:

javascript
var crawler = new supercrawler.Crawler({
  interval: 1000,
  concurrentRequestsLimit: 1
});

The following methods are available:

Method Description
getUrlList Get the UrlList type instance.
getInterval Get the interval setting.
getConcurrentRequestsLimit Get the maximum number of concurrent requests.
getUserAgent Get the user agent.
start Start crawling.
stop Stop crawling.
addHandler(handler) Add a handler for all content types.
addHandler(contentType, handler) Add a handler for a specific content type. If contentType is a string, then (for example) 'text' will match 'text/html', 'text/plain', etc. If contentType is an array of strings, the page content type must match exactly.

The Crawler object fires the following events:

Event Description
crawlurl(url) Fires when crawling starts with a new URL.
crawledurl(url, errorCode, statusCode, errorMessage) Fires when crawling of a URL is complete. errorCode is null if no error occurred. statusCode is set if and only if the request was successful. errorMessage is null if no error occurred.
urllistempty Fires when the URL list is (intermittently) empty.
urllistcomplete Fires when the URL list is permanently empty, barring URLs added by external sources. This only makes sense when running Supercrawler in non-distributed fashion.

DbUrlList

DbUrlList is a queue backed with a database, such as MySQL, Postgres or SQLite. You can use any database engine supported by Sequelize.

If a request fails, this queue will ensure the request gets retried at some point in the future. The next request is schedule 1 hour into the future. After that, the period of delay doubles for each failure.

Options:

Option Description
opts.db.database Database name.
opts.db.username Database username.
opts.db.password Database password.
opts.db.sequelizeOpts Options to pass to sequelize.
opts.db.table Table name to store URL queue. Default = 'url'
opts.recrawlInMs Number of milliseconds to recrawl a URL. Default = 31536000000 (1 year)

Example usage:

javascript
new supercrawler.DbUrlList({
  db: {
    database: "crawler",
    username: "root",
    password: "password",
    sequelizeOpts: {
      dialect: "mysql",
      host: "localhost"
    }
  }
})

The following methods are available:

Method Description
insertIfNotExists(url) Insert a Url object.
upsert(url) Upsert Url object.
getNextUrl() Get the next Url to be crawled.

RedisUrlList

RedisUrlList is a queue backed with Redis.

If a request fails, this queue will ensure the request gets retried at some point in the future. The next request is schedule 1 hour into the future. After that, the period of delay doubles for each failure.

It also balances requests between different hostnames. So, for example, if you crawl a sitemap file with 10,000 URLs, the next 10,000 URLs will not be stuck in the same host.

Options:

Option Description
opts.redis Options passed to ioredis.
opts.delayHalfLifeMs Hostname delay factor half-life. Requests are delayed by an amount of time proportional to the number of pages crawled for a hostname, but this factor exponentially decays over time. Default = 3600000 (1 hour).
opts.expiryTimeMs Amount of time before recrawling a successful URL. Default = 2592000000 (30 days).
opts.initialRetryTimeMs Amount of time to wait before first retry after a failed URL. Default = 3600000 (1 hour)

Example usage:

javascript
new supercrawler.RedisUrlList({
  redis: {
    host: "127.0.0.1"
  }
})

The following methods are available:

Method Description
insertIfNotExists(url) Insert a Url object.
upsert(url) Upsert Url object.
getNextUrl() Get the next Url to be crawled.

FifoUrlList

The FifoUrlList is the default URL queue powering the crawler. You can add URLs to the queue, and they will be crawled in the same order (FIFO).

Note that, with this queue, URLs are only crawled once, even if the request fails. If you need retry functionality, you must use DbUrlList.

The following methods are available:

Method Description
insertIfNotExists(url) Insert a Url object.
upsert(url) Upsert Url object.
getNextUrl() Get the next Url to be crawled.

Url

A Url represents a URL to be crawled, or a URL that has already been crawled. It is uniquely identified by an absolute-path URL, but also contains information about errors and status codes.

Option Description
url Absolute-path string url
statusCode HTTP status code or null.
errorCode String error code or null.

Example usage:

javascript
var url = new supercrawler.Url({
  url: "https://example.com"
});

You can also call it just a string URL:

javascript
var url = new supercrawler.Url("https://example.com");

The following methods are available:

Method Description
getUniqueId Get the unique identifier for this object.
getUrl Get the absolute-path string URL.
getErrorCode Get the error code, or null if it is empty.
getStatusCode Get the status code, or null if it is empty.

handlers.htmlLinkParser

A function that returns a handler which parses a HTML page and identifies any links.

Option Description
hostnames Array of hostnames that are allowed to be crawled.
urlFilter(url, pageUrl) Function that takes a URL and returns true if it should be included.

Example usage:

javascript
var hlp = supercrawler.handlers.htmlLinkParser({
  hostnames: ["example.com"]
});
javascript
var hlp = supercrawler.handlers.htmlLinkParser({
  urlFilter: function (url) {
    return url.indexOf("page1") === -1;
  }
});

handlers.robotsParser

A function that returns a handler which parses a robots.txt file. Robots.txt file are automatically crawled, and sent through the same content handler routines as any other file. This handler will look for any Sitemap: directives, and add those XML sitemaps to the crawl.

It will ignore any files that are not /robots.txt.

If you want to extract the URLs from those XML sitemaps, you will also need to add a sitemap parser.

Option Description
urlFilter(sitemapUrl, robotsTxtUrl) Function that takes a URL and returns true if it should be included.

Example usage:

javascript
var rp = supercrawler.handlers.robotsParser();
crawler.addHandler("text/plain", supercrawler.handlers.robotsParser());

handlers.sitemapsParser

A function that returns a handler which parses an XML sitemaps file. It will pick up any URLs matching sitemapindex > sitemap > loc, urlset > url > loc.

It will also handle a gzipped file, since that it part of the sitemaps specification.

Option Description
urlFilter Function that takes a URL (including sitemap entries) and returns true if it should be included.

Example usage:

javascript
var sp = supercrawler.handlers.sitemapsParser();
crawler.addHandler(supercrawler.handlers.sitemapsParser());

Changelog

2.0.0

  • [Added] crawledurl event to contain the error message, thanks hjr3.
  • [Changed] sitemapsParser to apply urlFilter on the sitemaps entries, thanks [hjr3](https://githu

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

JavaScriptcrawlerdistributed-crawlerrobotsitemap

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言