Skip to content

Commit 0a2a15e

Browse files
committed
fix: use --save with npm install in the parsing lesson
1 parent 2edfe14 commit 0a2a15e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sources/academy/webscraping/scraping_basics_javascript2/05_parsing_html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ While [Bobince's infamous StackOverflow answer](https://stackoverflow.com/a/1732
3333
We'll choose [Cheerio](https://cheerio.js.org/) as our parser, as it's a popular library which can process even non-standard, broken markup. This is useful for scraping, because real-world websites often contain all sorts of errors and discrepancies. In the project directory, we'll run the following to install the Cheerio package:
3434

3535
```text
36-
$ npm install cheerio
36+
$ npm install cheerio --save
3737
3838
added 23 packages, and audited 24 packages in 1s
3939
...

0 commit comments

Comments
 (0)