@crawlee/jsdom
Provides a framework for the parallel crawling of web pages using plain HTTP requests and jsdom DOM implementation. 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.
Since JSDOMCrawler
uses raw HTTP requests to download web pages, 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.
JSDOMCrawler
downloads each URL using a plain HTTP request, parses the HTML content using JSDOM and then invokes the user-provided JSDOMCrawlerOptions.requestHandler to extract page data using the window
object.
The source URLs are represented using Request objects that are fed from RequestList or RequestQueue instances provided by the JSDOMCrawlerOptions.requestList or JSDOMCrawlerOptions.requestQueue constructor options, respectively.
If both JSDOMCrawlerOptions.requestList and JSDOMCrawlerOptions.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 preNavigationHooks
to adjust gotOptions
:
preNavigationHooks: [
(crawlingContext, gotOptions) => {
// ...
},
]
By default, JSDOMCrawler
only processes web pages with the text/html
and application/xhtml+xml
MIME content types (as reported by the Content-Type
HTTP header), and skips pages with other content types. If you want the crawler to process other content types, use the JSDOMCrawlerOptions.additionalMimeTypes constructor option. Beware that the parsing behavior differs for HTML, XML, JSON and other types of content. For more details, see JSDOMCrawlerOptions.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 autoscaledPoolOptions
parameter of the JSDOMCrawler
constructor. For user convenience, the minConcurrency
and maxConcurrency
AutoscaledPool options are available directly in the JSDOMCrawler
constructor.
Example usage
const crawler = new JSDOMCrawler({
async requestHandler({ request, window }) {
await Dataset.pushData({
url: request.url,
title: window.document.title,
});
},
});
await crawler.run([
'http://crawlee.dev',
]);
Index
Crawlers
Other
- AddRequestsBatchedOptions
- AddRequestsBatchedResult
- AutoscaledPool
- AutoscaledPoolOptions
- BASIC_CRAWLER_TIMEOUT_BUFFER_SECS
- BLOCKED_STATUS_CODES
- BasicCrawler
- BasicCrawlerOptions
- BasicCrawlingContext
- ClientInfo
- Configuration
- ConfigurationOptions
- Cookie
- CrawlerAddRequestsOptions
- CrawlerAddRequestsResult
- CrawlerExperiments
- CrawlerRunOptions
- CrawlingContext
- CreateContextOptions
- CreateSession
- CriticalError
- Dataset
- DatasetConsumer
- DatasetContent
- DatasetDataOptions
- DatasetExportOptions
- DatasetExportToOptions
- DatasetIteratorOptions
- DatasetMapper
- DatasetOptions
- DatasetReducer
- EnqueueLinksOptions
- EnqueueStrategy
- ErrnoException
- ErrorHandler
- ErrorSnapshotter
- ErrorTracker
- ErrorTrackerOptions
- EventManager
- EventType
- EventTypeName
- FileDownload
- FileDownloadCrawlingContext
- FileDownloadErrorHandler
- FileDownloadHook
- FileDownloadOptions
- FileDownloadRequestHandler
- FinalStatistics
- GetUserDataFromRequest
- GlobInput
- GlobObject
- HttpCrawler
- HttpCrawlerOptions
- HttpCrawlingContext
- HttpErrorHandler
- HttpHook
- HttpRequestHandler
- IRequestList
- IStorage
- KeyConsumer
- KeyValueStore
- KeyValueStoreIteratorOptions
- KeyValueStoreOptions
- LoadedRequest
- LocalEventManager
- Log
- LogLevel
- Logger
- LoggerJson
- LoggerOptions
- LoggerText
- MAX_POOL_SIZE
- NonRetryableError
- PERSIST_STATE_KEY
- PersistenceOptions
- ProxyConfiguration
- ProxyConfigurationFunction
- ProxyConfigurationOptions
- ProxyInfo
- PseudoUrl
- PseudoUrlInput
- PseudoUrlObject
- PushErrorMessageOptions
- QueueOperationInfo
- RecordOptions
- RegExpInput
- RegExpObject
- Request
- RequestHandler
- RequestHandlerResult
- RequestList
- RequestListOptions
- RequestListSourcesFunction
- RequestListState
- RequestOptions
- RequestProvider
- RequestProviderOptions
- RequestQueue
- RequestQueueOperationOptions
- RequestQueueOptions
- RequestQueueV1
- RequestQueueV2
- RequestState
- RequestTransform
- RestrictedCrawlingContext
- RetryRequestError
- Router
- RouterHandler
- RouterRoutes
- Session
- SessionError
- SessionOptions
- SessionPool
- SessionPoolOptions
- SessionState
- SitemapRequestList
- SitemapRequestListOptions
- SnapshotResult
- Snapshotter
- SnapshotterOptions
- Source
- StatisticPersistedState
- StatisticState
- Statistics
- StatisticsOptions
- StatusMessageCallback
- StatusMessageCallbackParams
- StorageClient
- StorageManagerOptions
- StreamHandlerContext
- SystemInfo
- SystemStatus
- SystemStatusOptions
- TieredProxy
- UrlPatternObject
- UseStateOptions
- checkStorageAccess
- createBasicRouter
- createFileRouter
- createHttpRouter
- enqueueLinks
- filterRequestsByPatterns
- log
- purgeDefaultStorages
- tryAbsoluteURL
- useState
- withCheckedStorageAccess
- JSDOMCrawlerOptions
- JSDOMCrawlingContext
- JSDOMErrorHandler
- JSDOMHook
- JSDOMRequestHandler
- createJSDOMRouter
Other
AddRequestsBatchedOptions
AddRequestsBatchedResult
AutoscaledPool
AutoscaledPoolOptions
BASIC_CRAWLER_TIMEOUT_BUFFER_SECS
BLOCKED_STATUS_CODES
BasicCrawler
BasicCrawlerOptions
BasicCrawlingContext
ClientInfo
Configuration
ConfigurationOptions
Cookie
CrawlerAddRequestsOptions
CrawlerAddRequestsResult
CrawlerExperiments
CrawlerRunOptions
CrawlingContext
CreateContextOptions
CreateSession
CriticalError
Dataset
DatasetConsumer
DatasetContent
DatasetDataOptions
DatasetExportOptions
DatasetExportToOptions
DatasetIteratorOptions
DatasetMapper
DatasetOptions
DatasetReducer
EnqueueLinksOptions
EnqueueStrategy
ErrnoException
ErrorHandler
ErrorSnapshotter
ErrorTracker
ErrorTrackerOptions
EventManager
EventType
EventTypeName
FileDownload
FileDownloadCrawlingContext
FileDownloadErrorHandler
FileDownloadHook
FileDownloadOptions
FileDownloadRequestHandler
FinalStatistics
GetUserDataFromRequest
GlobInput
GlobObject
HttpCrawler
HttpCrawlerOptions
HttpCrawlingContext
HttpErrorHandler
HttpHook
HttpRequestHandler
IRequestList
IStorage
KeyConsumer
KeyValueStore
KeyValueStoreIteratorOptions
KeyValueStoreOptions
LoadedRequest
LocalEventManager
Log
LogLevel
Logger
LoggerJson
LoggerOptions
LoggerText
MAX_POOL_SIZE
NonRetryableError
PERSIST_STATE_KEY
PersistenceOptions
ProxyConfiguration
ProxyConfigurationFunction
ProxyConfigurationOptions
ProxyInfo
PseudoUrl
PseudoUrlInput
PseudoUrlObject
PushErrorMessageOptions
QueueOperationInfo
RecordOptions
RegExpInput
RegExpObject
Request
RequestHandler
RequestHandlerResult
RequestList
RequestListOptions
RequestListSourcesFunction
RequestListState
RequestOptions
RequestProvider
RequestProviderOptions
RequestQueue
RequestQueueOperationOptions
RequestQueueOptions
RequestQueueV1
RequestQueueV2
RequestState
RequestTransform
RestrictedCrawlingContext
RetryRequestError
Router
RouterHandler
RouterRoutes
Session
SessionError
SessionOptions
SessionPool
SessionPoolOptions
SessionState
SitemapRequestList
SitemapRequestListOptions
SnapshotResult
Snapshotter
SnapshotterOptions
Source
StatisticPersistedState
StatisticState
Statistics
StatisticsOptions
StatusMessageCallback
StatusMessageCallbackParams
StorageClient
StorageManagerOptions
StreamHandlerContext
SystemInfo
SystemStatus
SystemStatusOptions
TieredProxy
UrlPatternObject
UseStateOptions
checkStorageAccess
createBasicRouter
createFileRouter
createHttpRouter
enqueueLinks
filterRequestsByPatterns
log
purgeDefaultStorages
tryAbsoluteURL
useState
withCheckedStorageAccess
JSDOMErrorHandler
Type parameters
- UserData: Dictionary = any
- JSONData: Dictionary = any
JSDOMHook
Type parameters
- UserData: Dictionary = any
- JSONData: Dictionary = any
JSDOMRequestHandler
Type parameters
- UserData: Dictionary = any
- JSONData: Dictionary = any