-
Notifications
You must be signed in to change notification settings - Fork 761
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Mention how to install beta builds (#2850)
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,28 @@ await crawler.run(['https://crawlee.dev']); | |
|
||
By default, Crawlee stores data to `./storage` in the current working directory. You can override this directory via Crawlee configuration. For details, see [Configuration guide](https://crawlee.dev/docs/guides/configuration), [Request storage](https://crawlee.dev/docs/guides/request-storage) and [Result storage](https://crawlee.dev/docs/guides/result-storage). | ||
|
||
### Installing pre-release versions | ||
|
||
We provide automated beta builds for every merged code change in Crawlee. You can find them in the npm [list of releases](https://www.npmjs.com/package/crawlee?activeTab=versions). If you want to test new features or bug fixes before we release them, feel free to install a beta build like this: | ||
|
||
```bash | ||
npm install [email protected] | ||
``` | ||
|
||
If you also use the [Apify SDK](https://github.com/apify/apify-sdk-js), you need to specify dependency overrides in your `package.json` file so that you don't end up with multiple versions of Crawlee installed: | ||
|
||
```json | ||
{ | ||
"overrides": { | ||
"apify": { | ||
"@crawlee/core": "3.12.3-beta.13", | ||
"@crawlee/types": "3.12.3-beta.13", | ||
"@crawlee/utils": "3.12.3-beta.13" | ||
} | ||
} | ||
} | ||
``` | ||
|
||
## 🛠 Features | ||
|
||
- Single interface for **HTTP and headless browser** crawling | ||
|