Angular - 2-2 How is an angular application loaded and started?
Hello everyone and welcome on this video we will see ... how our angular application is loaded and ... started. Here is the page as ... we see it right now in the project that... we created at the end of the last section, an empty page here, Angular, The Complete Guide, we reach it at ... localhost:4200, this is where our ... development hosted by the CLI or created by the CLI ... will host our Angular application. Now, the content we see... here can be changed by going to the file ... app.component.html from our app folder. and here we can display a... text, we’ll put I’m in ... appComponent! here in an h3 beacon. So if we save this file, we will see it here and it will automatically have the style of ... bootstrap text. because we added ... bootstrap at the end of the last section. But while it may seem obvious that we... see here, it’s also a little strange, how our browser or server hosting our ... does it know that it must render the contents of the app.component.html here? You could say it’s the ... only componant that we have right now and we ... let’s take a closer look at the componant soon but this ... is not the reason and in reality, this is not the file served by the server, instead it is the index.html file that is served by the ... and remember that I told you that A