Skip to content

Commit 6e6db97

Browse files
committed
chore: set the javascript2 course as unlisted
1 parent 2e50496 commit 6e6db97

14 files changed

+14
-0
lines changed

sources/academy/webscraping/scraping_basics_javascript2/01_devtools_inspecting.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Inspecting web pages with browser DevTools
33
sidebar_label: "DevTools: Inspecting"
44
description: Lesson about using the browser tools for developers to inspect and manipulate the structure of a website.
55
slug: /scraping-basics-javascript2/devtools-inspecting
6+
unlisted: true
67
---
78

89
import Exercises from './_exercises.mdx';

sources/academy/webscraping/scraping_basics_javascript2/02_devtools_locating_elements.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Locating HTML elements on a web page with browser DevTools
33
sidebar_label: "DevTools: Locating HTML elements"
44
description: Lesson about using the browser tools for developers to manually find products on an e-commerce website.
55
slug: /scraping-basics-javascript2/devtools-locating-elements
6+
unlisted: true
67
---
78

89
import Exercises from './_exercises.mdx';

sources/academy/webscraping/scraping_basics_javascript2/03_devtools_extracting_data.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Extracting data from a web page with browser DevTools
33
sidebar_label: "DevTools: Extracting data"
44
description: Lesson about using the browser tools for developers to manually extract product data from an e-commerce website.
55
slug: /scraping-basics-javascript2/devtools-extracting-data
6+
unlisted: true
67
---
78

89
import Exercises from './_exercises.mdx';

sources/academy/webscraping/scraping_basics_javascript2/04_downloading_html.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Downloading HTML with Node.js
33
sidebar_label: Downloading HTML
44
description: Lesson about building a Node.js application for watching prices. Using the Fetch API to download HTML code of a product listing page.
55
slug: /scraping-basics-javascript2/downloading-html
6+
unlisted: true
67
---
78

89
import Exercises from './_exercises.mdx';

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Parsing HTML with Node.js
33
sidebar_label: Parsing HTML
44
description: Lesson about building a Node.js application for watching prices. Using the Cheerio library to parse HTML code of a product listing page.
55
slug: /scraping-basics-javascript2/parsing-html
6+
unlisted: true
67
---
78

89
import Exercises from './_exercises.mdx';

sources/academy/webscraping/scraping_basics_javascript2/06_locating_elements.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Locating HTML elements with Node.js
33
sidebar_label: Locating HTML elements
44
description: Lesson about building a Node.js application for watching prices. Using the Cheerio library to locate products on the product listing page.
55
slug: /scraping-basics-javascript2/locating-elements
6+
unlisted: true
67
---
78

89
import Exercises from './_exercises.mdx';

sources/academy/webscraping/scraping_basics_javascript2/07_extracting_data.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Extracting data from HTML with Node.js
33
sidebar_label: Extracting data from HTML
44
description: Lesson about building a Node.js application for watching prices. Using string manipulation to extract and clean data scraped from the product listing page.
55
slug: /scraping-basics-javascript2/extracting-data
6+
unlisted: true
67
---
78

89
import Exercises from './_exercises.mdx';

sources/academy/webscraping/scraping_basics_javascript2/08_saving_data.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Saving data with Node.js
33
sidebar_label: Saving data
44
description: Lesson about building a Node.js application for watching prices. Using the json2csv library to save data scraped from product listing pages in both JSON and CSV.
55
slug: /scraping-basics-javascript2/saving-data
6+
unlisted: true
67
---
78

89
**In this lesson, we'll save the data we scraped in the popular formats, such as CSV or JSON. We'll use the json2csv library to export the files.**

sources/academy/webscraping/scraping_basics_javascript2/09_getting_links.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Getting links from HTML with Node.js
33
sidebar_label: Getting links from HTML
44
description: Lesson about building a Node.js application for watching prices. Using the Cheerio library to locate links to individual product pages.
55
slug: /scraping-basics-javascript2/getting-links
6+
unlisted: true
67
---
78

89
import Exercises from './_exercises.mdx';

sources/academy/webscraping/scraping_basics_javascript2/10_crawling.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Crawling websites with Node.js
33
sidebar_label: Crawling websites
44
description: Lesson about building a Node.js application for watching prices. Using the Fetch API to follow links to individual product pages.
55
slug: /scraping-basics-javascript2/crawling
6+
unlisted: true
67
---
78

89
import Exercises from './_exercises.mdx';

0 commit comments

Comments
 (0)