Lecture 6 : editing the first app
Don’t be intimidated by the folder ..just open what you have created
This is your entire project
These are just folder structure .
Lets look [Link] file
These are dependencies
Command line
This is the command u have to run daily to start your project
In order to quit exit by
Ctrl+ c
Now as I don’t know the type script so we will have to live on assumption
See the code
The assumption may be that title corresponds to the title mentioned in html code
Now if we change the title and save
Now lets look what change is in ui
So its changing
Now If we further dissect the web page press f12
There is something called “app-root”
The app-root corresponds to typescript code here
It looks like our own html code is created
That is actually in [Link]
Lets change the title dynamically
Lets go to the app and change the app
Change title to “name”
And save
See
Now the objective is to as write something in the box it will change the name
We can use the angular tool ..called ngModel
Cant see anything