@crawlee/cheerio
Provides a framework for the parallel crawling of web pages using plain HTTP requests and cheerio HTML parser. 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 CheerioCrawler 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.
CheerioCrawler downloads each URL using a plain HTTP request, parses the HTML content using Cheerio and then invokes the user-provided CheerioCrawlerOptions.requestHandler to extract page data using a jQuery-like interface to the parsed HTML DOM.
The source URLs are represented using Request objects that are fed from RequestList or RequestQueue instances provided by the CheerioCrawlerOptions.requestList or CheerioCrawlerOptions.requestQueue constructor options, respectively.
If both CheerioCrawlerOptions.requestList and CheerioCrawlerOptions.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, CheerioCrawler 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 CheerioCrawlerOptions.additionalMimeTypes constructor option. Beware that the parsing behavior differs for HTML, XML, JSON and other types of content. For more details, see CheerioCrawlerOptions.requestHandler.
New requests are only dispatched when there is enough free CPU and memory available, as judged by the crawler's ConcurrencySystem. Concurrency is tuned via the minConcurrency, maxConcurrency and maxRequestsPerMinute options of the CheerioCrawler constructor, or, for finer control, by injecting a pre-configured concurrencySystem.
Example usage
const crawler = new CheerioCrawler({
requestList,
async requestHandler({ request, response, body, contentType, $ }) {
const data = [];
// Do some data extraction from the page with Cheerio.
$('.some-collection').each((index, el) => {
data.push({ title: $(el).find('.some-title').text() });
});
// Save the data to dataset.
await Dataset.pushData({
url: request.url,
html: body,
data,
})
},
});
await crawler.run([
'http://www.example.com/page-1',
'http://www.example.com/page-2',
]);
Index
Crawlers
Other
- AddRequestsBatchedOptions
- AddRequestsBatchedResult
- ApifyLogAdapter
- ArgumentValidationError
- BaseCrawleeLogger
- BasicCrawler
- BasicCrawlerOptions
- BasicCrawlingContext
- BLOCKED_STATUS_CODES
- ByteCounterStream
- CalculatedStatistics
- coerceBoolean
- coerceNumber
- ConcurrencyConsumer
- ConcurrencySystem
- ConcurrencySystemOptions
- ConfigField
- Configuration
- ConfigurationInput
- ConfigurationOptions
- ContextMiddleware
- ContextPipeline
- ContextPipelineCleanupError
- ContextPipelineInitializationError
- ContextPipelineInterruptedError
- CpuLoadSignal
- CpuLoadSignalOptions
- crawleeConfigFields
- CrawleeLogger
- CrawleeLoggerOptions
- CrawlerAddRequestsOptions
- CrawlerAddRequestsResult
- CrawlerRunOptions
- CrawlingContext
- createBasicRouter
- CreateContextOptions
- createFileRouter
- createHttpRouter
- CreateSession
- createStorageTransaction
- CriticalError
- Dataset
- DatasetConsumer
- DatasetContent
- DatasetDataOptions
- DatasetExportOptions
- DatasetExportToOptions
- DatasetIteratorOptions
- DatasetJournalEntry
- DatasetMapper
- DatasetOptions
- DatasetReducer
- DatasetStats
- defaultRoute
- DefaultRouteUserData
- DefaultStorageIdentifier
- EnqueueLinksOptions
- EnqueueStrategy
- EnqueueStrategyOption
- EnqueueUrlsOptions
- ErrnoException
- ErrorHandler
- ErrorSnapshotter
- ErrorTracker
- ErrorTrackerOptions
- EventLoopLoadSignal
- EventLoopLoadSignalOptions
- EventManager
- EventManagerOptions
- EventStatusMessageData
- EventType
- EventTypeName
- ExplicitStorageIdentifier
- ExtractLinksOptions
- field
- FieldsInput
- FieldsOutput
- FileDownload
- FileDownloadCrawlingContext
- FileDownloadErrorHandler
- FileDownloadHook
- FileDownloadRequestHandler
- FinalStatistics
- GetUserDataFromRequest
- GlobInput
- GlobObject
- HTTP_OPTIMIZED_CONCURRENCY_SYSTEM_OPTIONS
- HttpCrawler
- HttpCrawlerOptions
- HttpCrawlingContext
- HttpErrorHandler
- HttpHook
- HttpRequestHandler
- IConcurrencySystem
- InternalHttpCrawlingContext
- InternalHttpHook
- IProxyConfiguration
- IRequestLoader
- IRequestManager
- IStatistics
- IStorage
- JournaledRequest
- JournalEntry
- KeyConsumer
- KeyValueStore
- KeyValueStoreIteratorOptions
- KeyValueStoreJournalEntry
- KeyValueStoreOptions
- KeyValueStoreRawRecord
- KeyValueStoreStats
- LabeledSource
- LoadedRequest
- LoadSignal
- LoadSignalInfo
- LoadSignalsOptions
- LoadSignalStartContext
- LoadSnapshot
- LocalEventManager
- LocalEventManagerOptions
- log
- Log
- Logger
- LoggerJson
- LoggerOptions
- LoggerText
- LogLevel
- MAX_POOL_SIZE
- MemoryLoadSignal
- MemoryLoadSignalOptions
- MemoryStorageBackend
- MemoryStorageOptions
- MinimumSpeedStream
- MissingSessionError
- NavigationSkippedError
- NonRetryableError
- parseRetryAfterHeader
- parseValue
- PERSIST_STATE_KEY
- PersistenceOptions
- PersistentRateLimitError
- ProxyConfiguration
- ProxyConfigurationFunction
- ProxyConfigurationOptions
- purgeDefaultStorages
- PushErrorMessageOptions
- RecordOptions
- RecoverableState
- RecoverableStateOptions
- RecoverableStatePersistenceOptions
- RegExpInput
- RegExpObject
- Request
- RequestHandler
- RequestHandlerError
- RequestList
- RequestListOptions
- RequestListSourcesFunction
- RequestListState
- RequestManagerOpener
- RequestManagerTandem
- RequestOptions
- RequestQueue
- RequestQueueJournalEntry
- RequestQueueOperationInfo
- RequestQueueOperationOptions
- RequestQueueOptions
- RequestQueueStats
- RequestsLike
- RequestState
- RequestThrottledError
- RequestTransform
- RequestValidationError
- RequireContextPipeline
- ResolvedConfigValues
- resolveStorageIdentifier
- ResponseLike
- RestrictedCrawlingContext
- RetryRequestError
- RouteOptions
- Router
- RouterHandler
- RouterHandlerContext
- RouterLabel
- RouterRoutes
- RouteSchemas
- RoutesFromSchemas
- SchemaIssue
- serializeValue
- ServiceConflictError
- serviceLocator
- ServiceLocator
- Session
- SessionError
- SessionOptions
- SessionPool
- SessionPoolOptions
- SessionReuseStrategy
- SitemapRequestLoader
- SitemapRequestLoaderOptions
- SkippedRequestCallback
- SkippedRequestReason
- SnapshotResult
- SnapshotStore
- Source
- StateConversion
- StateValidationError
- StatisticPersistedState
- Statistics
- StatisticsOptions
- StatisticState
- StatisticStateExtensionOptions
- StatusMessageCallback
- StatusMessageCallbackParams
- StorageBackend
- StorageBackendLoadSignal
- StorageBackendLoadSignalOptions
- StorageIdentifier
- StorageInstanceManager
- StorageOpenOptions
- StorageStatsTracker
- StorageTransaction
- StorageTransactionOptions
- StorageTransactionState
- StorageTransactionView
- StorageWriteMode
- StorageWritePolicy
- supportsDomainThrottling
- SupportsDomainThrottling
- SyncStateConversion
- SystemInfo
- TaskLoopPredicates
- ThrottlingRequestManager
- ThrottlingRequestManagerOptions
- TypedContextAddRequests
- TypedContextEnqueueLinks
- UrlPatternInput
- UrlPatternObject
- useState
- UseStateOptions
- withDirectStorageAccess
- WithRequired
- withStorageTransaction
- CheerioCrawlerOptions
- CheerioCrawlingContext
- CheerioErrorHandler
- CheerioHook
- CheerioRequestHandler
- createCheerioRouter
Other
AddRequestsBatchedOptions
AddRequestsBatchedResult
ApifyLogAdapter
ArgumentValidationError
BaseCrawleeLogger
BasicCrawler
BasicCrawlerOptions
BasicCrawlingContext
BLOCKED_STATUS_CODES
ByteCounterStream
CalculatedStatistics
coerceBoolean
coerceNumber
ConcurrencyConsumer
ConcurrencySystem
ConcurrencySystemOptions
ConfigField
Configuration
ConfigurationInput
ConfigurationOptions
ContextMiddleware
ContextPipeline
ContextPipelineCleanupError
ContextPipelineInitializationError
ContextPipelineInterruptedError
CpuLoadSignal
CpuLoadSignalOptions
crawleeConfigFields
CrawleeLogger
CrawleeLoggerOptions
CrawlerAddRequestsOptions
CrawlerAddRequestsResult
CrawlerRunOptions
CrawlingContext
createBasicRouter
CreateContextOptions
createFileRouter
createHttpRouter
CreateSession
createStorageTransaction
CriticalError
Dataset
DatasetConsumer
DatasetContent
DatasetDataOptions
DatasetExportOptions
DatasetExportToOptions
DatasetIteratorOptions
DatasetJournalEntry
DatasetMapper
DatasetOptions
DatasetReducer
DatasetStats
defaultRoute
DefaultRouteUserData
DefaultStorageIdentifier
EnqueueLinksOptions
EnqueueStrategy
EnqueueStrategyOption
EnqueueUrlsOptions
ErrnoException
ErrorHandler
ErrorSnapshotter
ErrorTracker
ErrorTrackerOptions
EventLoopLoadSignal
EventLoopLoadSignalOptions
EventManager
EventManagerOptions
EventStatusMessageData
EventType
EventTypeName
ExplicitStorageIdentifier
ExtractLinksOptions
field
FieldsInput
FieldsOutput
FileDownload
FileDownloadCrawlingContext
FileDownloadErrorHandler
FileDownloadHook
FileDownloadRequestHandler
FinalStatistics
GetUserDataFromRequest
GlobInput
GlobObject
HTTP_OPTIMIZED_CONCURRENCY_SYSTEM_OPTIONS
HttpCrawler
HttpCrawlerOptions
HttpCrawlingContext
HttpErrorHandler
HttpHook
HttpRequestHandler
IConcurrencySystem
InternalHttpCrawlingContext
InternalHttpHook
IProxyConfiguration
IRequestLoader
IRequestManager
IStatistics
IStorage
JournaledRequest
JournalEntry
KeyConsumer
KeyValueStore
KeyValueStoreIteratorOptions
KeyValueStoreJournalEntry
KeyValueStoreOptions
KeyValueStoreRawRecord
KeyValueStoreStats
LabeledSource
LoadedRequest
LoadSignal
LoadSignalInfo
LoadSignalsOptions
LoadSignalStartContext
LoadSnapshot
LocalEventManager
LocalEventManagerOptions
log
Log
Logger
LoggerJson
LoggerOptions
LoggerText
LogLevel
MAX_POOL_SIZE
MemoryLoadSignal
MemoryLoadSignalOptions
MemoryStorageBackend
MemoryStorageOptions
MinimumSpeedStream
MissingSessionError
NavigationSkippedError
NonRetryableError
parseRetryAfterHeader
parseValue
PERSIST_STATE_KEY
PersistenceOptions
PersistentRateLimitError
ProxyConfiguration
ProxyConfigurationFunction
ProxyConfigurationOptions
purgeDefaultStorages
PushErrorMessageOptions
RecordOptions
RecoverableState
RecoverableStateOptions
RecoverableStatePersistenceOptions
RegExpInput
RegExpObject
Request
RequestHandler
RequestHandlerError
RequestList
RequestListOptions
RequestListSourcesFunction
RequestListState
RequestManagerOpener
RequestManagerTandem
RequestOptions
RequestQueue
RequestQueueJournalEntry
RequestQueueOperationInfo
RequestQueueOperationOptions
RequestQueueOptions
RequestQueueStats
RequestsLike
RequestState
RequestThrottledError
RequestTransform
RequestValidationError
RequireContextPipeline
ResolvedConfigValues
resolveStorageIdentifier
ResponseLike
RestrictedCrawlingContext
RetryRequestError
RouteOptions
Router
RouterHandler
RouterHandlerContext
RouterLabel
RouterRoutes
RouteSchemas
RoutesFromSchemas
SchemaIssue
serializeValue
ServiceConflictError
serviceLocator
ServiceLocator
Session
SessionError
SessionOptions
SessionPool
SessionPoolOptions
SessionReuseStrategy
SitemapRequestLoader
SitemapRequestLoaderOptions
SkippedRequestCallback
SkippedRequestReason
SnapshotResult
SnapshotStore
Source
StateConversion
StateValidationError
StatisticPersistedState
Statistics
StatisticsOptions
StatisticState
StatisticStateExtensionOptions
StatusMessageCallback
StatusMessageCallbackParams
StorageBackend
StorageBackendLoadSignal
StorageBackendLoadSignalOptions
StorageIdentifier
StorageInstanceManager
StorageOpenOptions
StorageStatsTracker
StorageTransaction
StorageTransactionOptions
StorageTransactionState
StorageTransactionView
StorageWriteMode
StorageWritePolicy
supportsDomainThrottling
SupportsDomainThrottling
SyncStateConversion
SystemInfo
TaskLoopPredicates
ThrottlingRequestManager
ThrottlingRequestManagerOptions
TypedContextAddRequests
TypedContextEnqueueLinks
UrlPatternInput
UrlPatternObject
useState
UseStateOptions
withDirectStorageAccess
WithRequired
withStorageTransaction
CheerioErrorHandler
Type parameters
- UserData: Dictionary = any
- JSONData: Dictionary = any
- ContextExtension = Dictionary<never>
CheerioHook
Type parameters
- UserData: Dictionary = any
- JSONData: Dictionary = any
CheerioRequestHandler
Type parameters
- UserData: Dictionary = any
- JSONData: Dictionary = any