Member-only story
How to build a real world application using Angular 9.
12 min readApr 26, 2020
I will show you how to create a simple stock application in Angular 9 utilizing observables, services, models, components and many more.
In this article I will show you how to create a new Angular 9 project. Additionally I will walk you step-by-step and show you how to do the following:
- Use a styling library and reference it globally in your application
- Create a header which can be used across your entire application
- Create child component and utilize the @Input() decorator to pass information to it
- Usage of click event in Angular
- Usage of dependency injection
- Usage of models in Angular
- Two way data bind
1 — Create an empty angular project
Run the following command in VScode IDE to create an empty angular project:
> ng new my-stocks