- class: HCCrawler
- HCCrawler.connect([options])
- HCCrawler.launch([options])
- HCCrawler.executablePath()
- HCCrawler.defaultArgs()
- crawler.queue([options])
- crawler.setMaxRequest(maxRequest)
- crawler.pause()
- crawler.resume()
- crawler.clearCache()
- crawler.close()
- crawler.disconnect()
- crawler.version()
- crawler.userAgent()
- crawler.wsEndpoint()
- crawler.onIdle()
- crawler.isPaused()
- crawler.queueSize()
- crawler.pendingQueueSize()
- crawler.requestedCount()
- event: 'requestdisallowed'
- event: 'requeststarted'
- event: 'requestskipped'
- event: 'requestfinished'
- event: 'requestretried'
- event: 'requestfailed'
- event: 'robotstxtrequestfailed'
- event: 'sitemapxmlrequestfailed'
- event: 'maxdepthreached'
- event: 'maxrequestreached'
- event: 'disconnected'
- class: SessionCache
- class: RedisCache
- class: BaseCache
- class: CSVExporter
- class: JSONLineExporter
- class: BaseExporter
HCCrawler provides methods to launch or connect to a Chromium instance.
const HCCrawler = require('headless-chrome-crawler');
(async () => {
const crawler = await HCCrawler.launch({
evaluatePage: (() => ({
title: $('title').text(),
})),
onSuccess: (result => {
console.log(result);
}),
});
crawler.queue('https://example.com/');
await crawler.onIdle();
await crawler.close();
})();
options
<Object>maxConcurrency
<number> Maximum number of pages to open concurrently, defaults to10
.maxRequest
<number> Maximum number of requests, defaults to0
. Pass0
to disable the limit.exporter
<Exporter> An exporter object which extends BaseExporter's interfaces to export results, default tonull
.cache
<Cache> A cache object which extends BaseCache's interfaces to remember and skip duplicate requests, defaults to a SessionCache object.persistCache
<boolean> Whether to clear cache on closing or disconnecting from the Chromium instance, defaults tofalse
.preRequest(options)
<Function> Function to do anything like modifyingoptions
before each request. You can also returnfalse
if you want to skip the request.options
<Object> crawler.queue()'s options with default values.
customCrawl(page, crawl)
<Function> Function to customize crawled result, allowing access to Puppeteer's raw API.onSuccess(result)
<Function> Function to be called whenevaluatePage()
successes.result
<Object>redirectChain
<Array<Object>> Redirect chain of requests.cookies
<Array<Object>> List of cookies.response
<Object>options
<Object> crawler.queue()'s options with default values.result
<Serializable> The result resolved fromevaluatePage()
option.screenshot
<Buffer> Buffer with the screenshot image, which isnull
whenscreenshot
option not passed.links
<Array<string>> List of links found in the requested page.depth
<number> Depth of the followed links.previousUrl
<string> The previous request's url. The value isnull
for the initial request.
onError(error)
<Function> Function to be called when request fails.error
<Error> Error object.options
<Object> crawler.queue()'s options with default values.depth
<number> Depth of the followed links.previousUrl
<string> The previous request's url. The value isnull
for the initial request.
- returns: <Promise<HCCrawler>> Promise which resolves to HCCrawler instance.
This method connects to an existing Chromium instance. The following options are passed to puppeteer.connect().
browserWSEndpoint, ignoreHTTPSErrors, slowMo
Also, the following options can be set as default values when crawler.queue() are executed.
url, allowedDomains, deniedDomains, timeout, priority, depthPriority, delay, retryCount, retryDelay, jQuery, browserCache, device, username, password, evaluatePage, cookies, extraHeaders
Note: In practice, setting the options every time you queue equests is redundant. Therefore, it's recommended to set the default values and override them depending on the necessity.
options
<Object>maxConcurrency
<number> Maximum number of pages to open concurrently, defaults to10
.maxRequest
<number> Maximum number of requests, defaults to0
. Pass0
to disable the limit.exporter
<Exporter> An exporter object which extends BaseExporter's interfaces to export results, default tonull
.cache
<Cache> A cache object which extends BaseCache's interfaces to remember and skip duplicate requests, defaults to a SessionCache object.persistCache
<boolean> Whether to clear cache on closing or disconnecting from the Chromium instance, defaults tofalse
.preRequest(options)
<Function> Function to do anything like modifyingoptions
before each request. You can also returnfalse
if you want to skip the request.options
<Object> crawler.queue()'s options with default values.
customCrawl(page, crawl)
<Function> Function to customize crawled result, allowing access to Puppeteer's raw API.onSuccess(result)
<Function> Function to be called whenevaluatePage()
successes.result
<Object>redirectChain
<Array<Object>> Redirect chain of requests.cookies
<Array<Object>> List of cookies.response
<Object>options
<Object> crawler.queue()'s options with default values.result
<Serializable> The result resolved fromevaluatePage()
option.screenshot
<Buffer> Buffer with the screenshot image, which isnull
whenscreenshot
option not passed.links
<Array<string>> List of links found in the requested page.depth
<number> Depth of the followed links.previousUrl
<string> The previous request's url. The value isnull
for the initial request.
onError(error)
<Function> Function to be called when request fails.error
<Error> Error object.options
<Object> crawler.queue()'s options with default values.depth
<number> Depth of the followed links.previousUrl
<string> The previous request's url. The value isnull
for the initial request.
- returns: <Promise<HCCrawler>> Promise which resolves to HCCrawler instance.
The method launches a Chromium instance. The following options are passed to puppeteer.launch().
ignoreHTTPSErrors, headless, executablePath, slowMo, args, ignoreDefaultArgs, handleSIGINT, handleSIGTERM, handleSIGHUP, dumpio, userDataDir, env, devtools
Also, the following options can be set as default values when crawler.queue() are executed.
url, allowedDomains, deniedDomains, timeout, priority, depthPriority, delay, retryCount, retryDelay, jQuery, browserCache, device, username, password, evaluatePage, cookies, extraHeaders
Note: In practice, setting the options every time you queue the requests is redundant. Therefore, it's recommended to set the default values and override them depending on the necessity.
- returns: <string> An expected path to find bundled Chromium.
options
<Object>url
<string> Url to navigate to. The url should include scheme, e.g.https://
.maxDepth
<number> Maximum depth for the crawler to follow links automatically, default to 1. Leave default to disable following links.priority
<number> Basic priority of queues, defaults to1
. Priority with larger number is preferred.depthPriority
<boolean> Whether to adjust priority based on its depth, defaults totrue
. Leave default to increase priority for higher depth, which is depth-first search.skipDuplicates
<boolean> Whether to skip duplicate requests, default totrue
. The request is considered to be the same ifurl
,userAgent
,device
andextraHeaders
are strictly the same.skipRequestedRedirect
<boolean> Whether to skip requests already appeared in redirect chains of requests, default tofalse
. This option is ignored whenskipDuplicates
is setfalse
.obeyRobotsTxt
<boolean> Whether to obey robots.txt, default totrue
.followSitemapXml
<boolean> Whether to use sitemap.xml to find locations, default tofalse
.allowedDomains
<Array<string|RegExp>> List of domains allowed to request. Passnull
or leave default to skip checking allowed domaindeniedDomains
<Array<string|RegExp>> List of domains not allowed to request. Passnull
or leave default to skip checking denied domain.delay
<number> Number of milliseconds after each request, defaults to0
. When delay is set,maxConcurrency
option must be1
.timeout
<number> Navigation timeout in milliseconds, defaults to30
seconds, pass0
to disable timeout.waitUntil
<string|Array<string>> When to consider navigation succeeded, defaults toload
. See the Puppeteer's page.goto()'swaitUntil
options for further details.waitFor
<Object> See Puppeteer's page.waitFor() for further details.retryCount
<number> Number of limit when retry fails, defaults to3
.retryDelay
<number> Number of milliseconds after each retry fails, defaults to10000
.jQuery
<boolean> Whether to automatically add jQuery tag to page, defaults totrue
.browserCache
<boolean> Whether to enable browser cache for each request, defaults totrue
.device
<string> Device to emulate. Available devices are listed here.username
<string> Username for basic authentication. passnull
if it's not necessary.screenshot
<Object> Screenshot option, defaults tonull
. This option is passed to Puppeteer's page.screenshot(). Passnull
or leave default to disable screenshot.viewport
<Object> See Puppeteer's page.setViewport() for further details.password
<string> Password for basic authentication. passnull
if it's not necessary.userAgent
<string> User agent string to override in this page.extraHeaders
<Object> An object containing additional headers to be sent with every request. All header values must be strings.cookies
<Array<Object>> List of cookies to be sent with every request. Either url or domain must be specified for each cookie.evaluatePage()
<Function> Function to be evaluated in browsers. Return serializable object. If it's not serializable, the result will beundefined
.
- returns: <Promise> Promise resolved when queue is pushed.
Note:
response.url
may be different fromoptions.url
especially when the requested url is redirected.
The options can be either an object, an array, or a string. When it's an array, each item in the array will be executed. When it's a string, the options are transformed to an object with only url defined.
maxRequest
<number> ModifymaxRequest
option you passed to HCCrawler.connect() or HCCrawler.launch().
This method pauses processing queues. You can resume the queue by calling crawler.resume().
This method resumes processing queues. This method may be used after the crawler is intentionally closed by calling crawler.pause() or request count reached maxRequest
option.
- returns: <Promise> Promise resolved when the cache is cleared.
This method clears the cache when it's used.
- returns: <Promise> Promise resolved when ther browser is closed.
- returns: <Promise> Promise resolved when ther browser is disconnected.
- returns: <string> Websocket url to connect to the browser.
- returns: <Promise> Promise resolved when queues become empty or paused.
- returns: <boolean> Whether the queue is paused.
- returns: <number> The size of pending queues.
- returns: <number> The count of total requests.
options
<Object>
Emitted when a request is disallowed by robots.txt.
options
<Object>
Emitted when a request started.
options
<Object>
Emitted when a request is skipped.
options
<Object>
Emitted when a request finished successfully.
options
<Object>
Emitted when a request is retried.
error
<Error>options
<Object> crawler.queue()'s options with default values.depth
<number> Depth of the followed links.previousUrl
<string> The previous request's url. The value isnull
for the initial request.
Emitted when a request failed.
error
<Error>options
<Object> crawler.queue()'s options with default values.depth
<number> Depth of the followed links.previousUrl
<string> The previous request's url. The value isnull
for the initial request.
Emitted when a request to robots.txt failed
error
<Error>options
<Object> crawler.queue()'s options with default values.depth
<number> Depth of the followed links.previousUrl
<string> The previous request's url. The value isnull
for the initial request.
Emitted when a request to sitemap.xml failed
options
<Object>
Emitted when a queue reached the crawler.queue()'s maxDepth
option.
Emitted when a queue reached the HCCrawler.connect() or HCCrawler.launch()'s maxRequest
option.
Emitted when the browser instance is disconnected.
SessionCache
is the HCCrawler.connect()'s default cache
option. By default, the crawler remembers already requested urls on its memory.
const HCCrawler = require('headless-chrome-crawler');
(async () => {
const crawler = await HCCrawler.launch({ cache: null }); // Pass null to the cache option to disable it.
// ...
})();
options
<Object>expire
<number> Seconds to expires cache after setting each value, default tonull
.
Passing a RedisCache
object to the HCCrawler.connect()'s cache
option allows you to persist requested urls and robots.txt in Redis so that it prevent from requesting same urls in a distributed servers' environment. It also works well with its persistCache
option to be true.
Other constructing options are passed to NodeRedis's redis.createClient()'s options.
const HCCrawler = require('headless-chrome-crawler');
const RedisCache = require('headless-chrome-crawler/cache/redis');
const cache = new RedisCache({ host: '127.0.0.1', port: 6379 });
(async () => {
const crawler = await HCCrawler.launch({
persistCache: true, // Set true so that cache won't be cleared when closing the crawler
cache,
});
// ...
})();
You can create your own cache by extending the BaseCache's interfaces.
See here for example.
options
<Object>
const HCCrawler = require('headless-chrome-crawler');
const CSVExporter = require('headless-chrome-crawler/exporter/csv');
const FILE = './tmp/result.csv';
const exporter = new CSVExporter({
file: FILE,
fields: ['response.url', 'response.status', 'links.length'],
separator: '\t',
});
(async () => {
const crawler = await HCCrawler.launch({ exporter });
// ...
})();
options
<Object>file
<string> File path to export output.fields
<Array<string>> List of fields to be filtered in json, defaults tonull
. Leave default not to filter fields.jsonReplacer
<Function> Function that alters the behavior of the stringification process, defaults tonull
. This is useful to sorts keys always in the same order.
const HCCrawler = require('headless-chrome-crawler');
const JSONLineExporter = require('headless-chrome-crawler/exporter/json-line');
const FILE = './tmp/result.json';
const exporter = new JSONLineExporter({
file: FILE,
fields: ['options', 'response'],
});
(async () => {
const crawler = await HCCrawler.launch({ exporter });
// ...
})();
You can create your own exporter by extending the BaseExporter's interfaces.
See here for example.