WEBVTT

00:00.080 --> 00:01.250
All right, everyone.

00:01.250 --> 00:08.270
Now we are going to make our project or initialize it so we will make a directory.

00:08.360 --> 00:15.380
I will call it IMDb scraper and inside the IMDb scraper directory.

00:17.620 --> 00:19.660
I will run npm init.

00:19.690 --> 00:20.710
Dash dash.

00:20.710 --> 00:21.490
Yes.

00:24.260 --> 00:27.410
After this I will add the packages.

00:28.670 --> 00:34.320
Yarn add or you can use NPM install if you prefer to use npm.

00:34.340 --> 00:36.590
Yarn add request.

00:36.980 --> 00:38.750
Request Promise.

00:41.210 --> 00:42.380
And.

00:42.380 --> 00:43.250
Cheerio.

00:43.940 --> 00:46.860
And then Nightmare JS.

00:49.770 --> 00:56.490
After this is done, you can go and open the folder inside of Visual Studio code and we can get to the

00:56.490 --> 00:57.510
coding part.

00:58.510 --> 01:01.180
So let me go and open the folder.

01:03.650 --> 01:08.420
And we go inside of IMDb scraper folder select folder.

01:10.830 --> 01:14.460
And now inside of here, we are going to make a file.

01:14.460 --> 01:17.940
We call it Index.js.

01:18.060 --> 01:21.570
And this is where our code itself will be written.
