JSDOMCrawler
Hierarchy
- HttpCrawler<JSDOMCrawlingContext>- JSDOMCrawler
 
Index
Constructors
constructor
- Parameters- options: JSDOMCrawlerOptions<any, any> = {}
- optionalconfig: Configuration
 - Returns JSDOMCrawler
Properties
optionalinheritedautoscaledPool
A reference to the underlying AutoscaledPool class that manages the concurrency of the crawler.
NOTE: This property is only initialized after calling the
crawler.run()function. We can use it to change the concurrency settings on the fly, to pause the crawler by callingautoscaledPool.pause()or to abort it by callingautoscaledPool.abort().
readonlyinheritedconfig
inheritedhasFinishedBefore
readonlyinheritedlog
optionalinheritedproxyConfiguration
A reference to the underlying ProxyConfiguration class that manages the crawler's proxies. Only available if used by the crawler.
optionalinheritedrequestList
A reference to the underlying RequestList class that manages the crawler's requests. Only available if used by the crawler.
optionalinheritedrequestQueue
Dynamic queue of URLs to be processed. This is useful for recursive crawling of websites. A reference to the underlying RequestQueue class that manages the crawler's requests. Only available if used by the crawler.
readonlyinheritedrouter
Default Router instance that will be used if we don't specify any requestHandler.
See router.addHandler() and router.addDefaultHandler().
inheritedrunning
optionalinheritedsessionPool
A reference to the underlying SessionPool class that manages the crawler's sessions. Only available if used by the crawler.
readonlyinheritedstats
A reference to the underlying Statistics class that collects and logs run statistics for requests.
Methods
_runRequestHandler
- Wrapper around requestHandler that opens and closes pages etc. - Parameters- context: JSDOMCrawlingContext<any, any>
 - Returns Promise<void>
inheritedaddRequests
- Adds requests to the queue in batches. By default, it will resolve after the initial batch is added, and continue adding the rest in background. You can configure the batch size via - batchSizeoption and the sleep time in between the batches via- waitBetweenBatchesMillis. If you want to wait for all batches to be added to the queue, you can use the- waitForAllRequestsToBeAddedpromise you get in the response object.- This is an alias for calling - addRequestsBatched()on the implicit- RequestQueuefor this crawler instance.- Parameters- requests: RequestsLike- The requests to add 
- options: CrawlerAddRequestsOptions = {}- Options for the request queue 
 - Returns Promise<CrawlerAddRequestsResult>
inheritedexportData
- Retrieves all the data from the default crawler Dataset and exports them to the specified format. Supported formats are currently 'json' and 'csv', and will be inferred from the - pathautomatically.- Parameters- path: string
- optionalformat: json | csv
- optionaloptions: DatasetExportOptions
 - Returns Promise<Data[]>
inheritedgetData
- Retrieves data from the default crawler Dataset by calling Dataset.getData. - Parameters- rest...args: [options: DatasetDataOptions]
 - Returns Promise<DatasetContent<Dictionary>>
inheritedgetDataset
inheritedgetRequestQueue
- Returns Promise<RequestProvider>
getVirtualConsole
- Returns the currently used - VirtualConsoleinstance. Can be used to listen for the JSDOM's internal console messages.- If the - hideInternalConsoleoption is set to- true, the messages aren't logged to the console by default, but the virtual console can still be listened to.- Example usage: - const console = crawler.getVirtualConsole();
 console.on('error', (e) => {
 log.error(e);
 });- Returns VirtualConsole
inheritedpushData
- Pushes data to the specified Dataset, or the default crawler Dataset by calling Dataset.pushData. - Parameters- data: Dictionary | Dictionary[]
- optionaldatasetIdOrName: string
 - Returns Promise<void>
inheritedrun
- Runs the crawler. Returns a promise that resolves once all the requests are processed and - autoscaledPool.isFinishedreturns- true.- We can use the - requestsparameter to enqueue the initial requests — it is a shortcut for running- crawler.addRequests()before- crawler.run().- Parameters- optionalrequests: RequestsLike- The requests to add. 
- optionaloptions: CrawlerRunOptions- Options for the request queue. 
 - Returns Promise<FinalStatistics>
inheritedsetStatusMessage
- This method is periodically called by the crawler, every - statusMessageLoggingIntervalseconds.- Parameters- message: string
- options: SetStatusMessageOptions = {}
 - Returns Promise<void>
inheritedstop
- Gracefully stops the current run of the crawler. - All the tasks active at the time of calling this method will be allowed to finish. - Parameters- message: string = 'The crawler has been gracefully stopped.'
 - Returns void
inheriteduse
- EXPERIMENTAL Function for attaching CrawlerExtensions such as the Unblockers. - Parameters- extension: CrawlerExtension- Crawler extension that overrides the crawler configuration. 
 - Returns void
inheriteduseState
- Parameters- defaultValue: State = ...
 - Returns Promise<State>
Provides a framework for the parallel crawling of web pages using plain HTTP requests. The URLs to crawl are fed either from a static list of URLs or from a dynamic queue of URLs enabling recursive crawling of websites.
It is very fast and efficient on data bandwidth. However, if the target website requires JavaScript to display the content, you might need to use PuppeteerCrawler or PlaywrightCrawler instead, because it loads the pages using full-featured headless Chrome browser.
This crawler downloads each URL using a plain HTTP request and doesn't do any HTML parsing.
The source URLs are represented using Request objects that are fed from RequestList or RequestQueue instances provided by the HttpCrawlerOptions.requestList or HttpCrawlerOptions.requestQueue constructor options, respectively.
If both HttpCrawlerOptions.requestList and HttpCrawlerOptions.requestQueue are used, the instance first processes URLs from the RequestList and automatically enqueues all of them to RequestQueue before it starts their processing. This ensures that a single URL is not crawled multiple times.
The crawler finishes when there are no more Request objects to crawl.
We can use the
preNavigationHooksto adjustgotOptions:By default, this crawler only processes web pages with the
text/htmlandapplication/xhtml+xmlMIME content types (as reported by theContent-TypeHTTP header), and skips pages with other content types. If you want the crawler to process other content types, use the HttpCrawlerOptions.additionalMimeTypes constructor option. Beware that the parsing behavior differs for HTML, XML, JSON and other types of content. For details, see HttpCrawlerOptions.requestHandler.New requests are only dispatched when there is enough free CPU and memory available, using the functionality provided by the AutoscaledPool class. All AutoscaledPool configuration options can be passed to the
autoscaledPoolOptionsparameter of the constructor. For user convenience, theminConcurrencyandmaxConcurrencyAutoscaledPool options are available directly in the constructor.Example usage: