Tag: Angular
-
Video – Simplifying Change Detection in Angular, ng-India Webinar recording
In this video, learn everything about Angular Change Detection For more such videos subscribe to the channel here : https://www.youtube.com/c/geek97
-
When to use viewProviders in Angular – Simplified
I have often seen developers are confused about viewProviders property of the @Componnet decorator. This post explains to you about the viewProviders option. The viewProviders defines the set of injectable objects that are visible to its view, DOM children. They are not visible to the content children. At the component level, you can provide a service in two ways: Using the providers array Using the viewProviders array.…
-
How to use useClass with Tree Shakable Services in Angular
Recently, I was asked that how can we use providers such as useClass inside a Tree Shakable service? By default, Angular services are tree shakable, which means if the application does not use them, they are not part of the final bundle. So, if you create a service using CLI as, ng g s Log…
-
Do Angular useExisting providers create a new object of service?
Short answer is NO, the useExisting provider use object created by other tokens. Read on, To learn more about such concepts, join a free webinar on Saturday, 20 June 4 PM IST. RSVP here: https://www.meetup.com/Geek97/events/271292371/ In Angular, providers determine how an object of a particular token gets created. That means whether Angular creates a new…
-
How to use different syntax for Angular Interpolation
How to use different syntax for Angular Interpolation
-
Video- Simplifying Dependency Injection, Services, and Providers in Angular
This video explain DI, Services, and Providers in Angular
-
Video – Lazy Load a component in Angular 9
This video explains, How to lazy load a component in Angular 9. Following topics are covered in the video
-
Thank you for ng-India 2020, find Photos and Resources here.
Hey there! I’m Dhananjay Kumar, organizer of India’s Largest Angular Conference, ng-India. I thank you for participating in ng-India on 29 Feb 2020 in Delhi. It is you, who has made ng-India, India’s (or perhaps Asia’s) Largest Angular Conference. I hope you had a good time learning from esteem speakers from across the world, you…
-
Recognized as a Google Developer Expert by Google
I am officially a Google Developer Expert in Angular and Web Technologies. I take this opportunity to thank the Angular global community and all my students who come to my training, meetups, and workshops. This recognition was never possible without you. I am humbled to be one of the few professionals who are awarded as…
-
How to use Interceptor in Angular
Interceptors are used to intercepts HTTP requests and responses from the application. You can handle them or transform them before passing it on. For example, you can use an interceptor to add authorization token before passing the HTTP request or cache the HTTP response. Some of the usages of interceptors are as follows, Caching of…