profile image

Yeshas M P

Javascript || Angular || .Net Core || SQL Server || Azure

Demystifying Angular Services and Dependency Injection

In any Angular application it is essential to keep component as lean as possible, it’s only concern should be on how to present the model data to view as described by Angular official docs. “a component’s job is to enable the user experience and nothing more.” where other logics such as fetching data from API endpoint or handling client and server side errors should be taken care by services....

April 15, 2022 · 8 min · Yeshas M P

Angular Bootstrapping : How does Angular work under the hood?

In this article we are going to explore together how Angular apps work behind the scenes. At first, we will understand various workspace and application configuration files and finally we will piece together all the files how they are involved in bootstraping. Angular Project Structure Before understanding how Angular works under the hood, it’s necessary to understand the workspace structure and application configuration involved in the process. Every Angular apps works in the context of workspace....

January 16, 2022 · 6 min · Yeshas M P