Create Angular Project
~15 mins
Task 1: Create Angular Project
ng new yourprojectname
Note: select option => Router(Y) and CSS(Y)
Task 2: Go to the project folder
cd yourprojectname
Task 3: Run the Project
ng serve
Task 4: Test the URL
http://localhost:4200
Task 5: Delete app.component.html contents and add your content
Welcome to my project
Task 5.2: Test your changes
http://localhost:4200
Questions
- How to create angular project ?
- How to run angular project ?
- In which file we have to modify the default content?