1 00:00:00,420 --> 00:00:01,110 Hey there. 2 00:00:01,380 --> 00:00:04,770 So this section is all about Node Node.js. 3 00:00:04,770 --> 00:00:11,310 And the core of it is how do we take a programming language, any language, PHP, Ruby, node, python, 4 00:00:11,310 --> 00:00:12,840 any of the other ones out there? 5 00:00:12,840 --> 00:00:17,820 And how do we combine it with my SQL so that we can do things like build web applications? 6 00:00:17,820 --> 00:00:21,090 And in this section, we're not getting to the web app just yet. 7 00:00:21,090 --> 00:00:27,240 So for a lot of you, I know that building a web app has sort of been like the whatever you call this 8 00:00:27,240 --> 00:00:35,520 thing, the catnip, I guess, or the the toy that has been dragging you through this course, getting 9 00:00:35,520 --> 00:00:39,120 you through the more dull parts, knowing that you'll see how to make an app at the end. 10 00:00:39,120 --> 00:00:42,180 But remember, this is not a web application course. 11 00:00:42,180 --> 00:00:43,680 This is a course on MySQL. 12 00:00:43,680 --> 00:00:45,270 So it's just a small part. 13 00:00:45,420 --> 00:00:48,450 But if that's what it takes, it's the light at the end of the tunnel. 14 00:00:48,450 --> 00:00:50,460 Well, we're basically through the tunnel now. 15 00:00:50,460 --> 00:00:55,770 And like I said in this section, we're not building the web app just yet, but we are seeing how to 16 00:00:55,770 --> 00:00:57,900 connect MySQL to another language. 17 00:00:57,900 --> 00:00:59,850 In our case, it's Node.js. 18 00:00:59,850 --> 00:01:05,370 And so what we're going to do here kind of it's a tricky situation for me because I don't have the luxury 19 00:01:05,370 --> 00:01:09,000 of teaching everybody node and teaching all the basics that you need. 20 00:01:09,000 --> 00:01:11,670 So we're kind of going to do a crash course at the beginning. 21 00:01:11,670 --> 00:01:17,640 Then we're going to work with a file of JavaScript and connect it to a MySQL database so that we could 22 00:01:17,640 --> 00:01:22,710 do things like randomly generate 500 users and insert all of them with one go. 23 00:01:23,040 --> 00:01:28,290 So we can insert 500 users manually, but how could we make 500 random users? 24 00:01:28,290 --> 00:01:30,720 Every time I run a file, that's what we're doing. 25 00:01:30,720 --> 00:01:34,860 And then in the next section, we'll build a web app to connect to our database. 26 00:01:35,040 --> 00:01:35,460 All right. 27 00:01:35,460 --> 00:01:36,270 We're almost there.