WEBVTT

00:01.400 --> 00:01.730
Okay.

00:01.730 --> 00:06.170
So the first thing we are going to do, we're going to make a folder for our project.

00:06.170 --> 00:08.660
In this case, I will call it Craigslist.

00:09.350 --> 00:18.710
Then I'm going to go inside of the folder in the terminal and then we will write npm init.

00:18.740 --> 00:19.250
Dash.

00:19.250 --> 00:19.670
Dash.

00:19.670 --> 00:20.330
Yes.

00:21.980 --> 00:23.190
So the dash dash.

00:23.210 --> 00:23.380
Yes.

00:23.480 --> 00:29.710
Is to accept the licensing agreement already so we don't have to press enter or enter to enter.

00:31.020 --> 00:37.280
Um, and after we have run this, we can open the project inside of our code editor.

00:39.980 --> 00:44.000
So I'm going to go ahead open the folder inside our Visual Studio code.

00:46.920 --> 00:51.600
Now the folder or the project is opened inside of Visual Studio code.

00:53.110 --> 00:59.110
Okay, So now we are going to add the packages we are using inside of a web scraper project, which

00:59.110 --> 01:03.490
is going to be request and request promise.

01:03.490 --> 01:09.280
And yo and I will show you later what we use these different packages for.

01:09.370 --> 01:16.060
If you prefer to use NPM instead of yarn which I use here, you can use NPM install dash dash save.

01:19.100 --> 01:26.120
So now, once all of the packages have finished installing, we can create our index.js where we will

01:26.120 --> 01:28.940
be running our web scraper project inside.
