@crawlee/cheerio 4.0.0-beta.87 → 4.0.0-beta.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -106,9 +106,9 @@ JSONData extends Dictionary = any> = RequestHandler<CheerioCrawlingContext<UserD
|
|
|
106
106
|
*
|
|
107
107
|
* New requests are only dispatched when there is enough free CPU and memory available,
|
|
108
108
|
* using the functionality provided by the {@link AutoscaledPool} class.
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
* {@link
|
|
109
|
+
* Concurrency is tuned via the `minConcurrency`, `maxConcurrency` and `maxRequestsPerMinute` options of the
|
|
110
|
+
* `CheerioCrawler` constructor, or, for finer control, by injecting a pre-configured
|
|
111
|
+
* {@link ConcurrencySystem|`concurrencySystem`}.
|
|
112
112
|
*
|
|
113
113
|
* **Example usage:**
|
|
114
114
|
*
|
|
@@ -49,9 +49,9 @@ import { parseDocument } from 'htmlparser2';
|
|
|
49
49
|
*
|
|
50
50
|
* New requests are only dispatched when there is enough free CPU and memory available,
|
|
51
51
|
* using the functionality provided by the {@link AutoscaledPool} class.
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
* {@link
|
|
52
|
+
* Concurrency is tuned via the `minConcurrency`, `maxConcurrency` and `maxRequestsPerMinute` options of the
|
|
53
|
+
* `CheerioCrawler` constructor, or, for finer control, by injecting a pre-configured
|
|
54
|
+
* {@link ConcurrencySystem|`concurrencySystem`}.
|
|
55
55
|
*
|
|
56
56
|
* **Example usage:**
|
|
57
57
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crawlee/cheerio",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.89",
|
|
4
4
|
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.0.0"
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@crawlee/http": "4.0.0-beta.
|
|
51
|
-
"@crawlee/types": "4.0.0-beta.
|
|
52
|
-
"@crawlee/utils": "4.0.0-beta.
|
|
50
|
+
"@crawlee/http": "4.0.0-beta.89",
|
|
51
|
+
"@crawlee/types": "4.0.0-beta.89",
|
|
52
|
+
"@crawlee/utils": "4.0.0-beta.89",
|
|
53
53
|
"cheerio": "^1.0.0",
|
|
54
54
|
"htmlparser2": "^10.0.0",
|
|
55
55
|
"tslib": "^2.8.1"
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "9279941162eb4be0a9113f768b5bd79d27e66eba"
|
|
65
65
|
}
|