WEBVTT

00:03.880 --> 00:07.540
Let's start out by making a folder for this project.

00:07.840 --> 00:09.250
So make the.

00:10.450 --> 00:12.830
Craigslist Web scraper.

00:12.850 --> 00:19.390
Let's call it that and then move into the directory with CD, Craigslist, Web scraper.

00:23.080 --> 00:27.900
And then inside the directory let's initialize the project with npm init.

00:27.910 --> 00:30.850
So npm init dash dash.

00:30.850 --> 00:31.470
Yes.

00:33.440 --> 00:38.270
And now let's install or add the packages that we're going to need for this project.

00:38.270 --> 00:41.390
So yarn add puppeteer.

00:42.230 --> 00:46.400
And cheerio if you prefer to use NPM.

00:46.430 --> 00:50.090
Feel free to use NPM, install puppeteer and.

00:50.090 --> 00:50.930
Cheerio.

00:51.960 --> 00:57.930
Now, please keep in mind that it can take a while to download the puppeteer package because it's actually

00:57.930 --> 01:00.930
downloading the full chromium browser.

01:01.980 --> 01:08.070
Now, once the packages have finished installing, let's open up the project folder inside Visual Studio

01:08.070 --> 01:08.730
code.
