#angularjs
Read more stories on Hashnode
Articles with this tag
Bundling is the need of the hour as even today bloated web apps are being shipped to the production servers which really slows down the performance of...
Purpose: To optimize the performance of the web app, How? By limiting the rate of function calls for eg. API calls. For example - search bar -> Input...
Open on Github: https://github.com/niharika293/angular-module-strategies Loading of a module can be achieved in 3 ways - Eagerly Loading {Default}:...
Guards are nothing but some code/logic executed before the route is even loaded or when the user tries to exit from the route. They're generally known...
Content projection - It is a pattern in which we may require to send/insert / project data dynamically to our angular components. Is done using...
Change Detection => Process run by angular to check whether the app's state has been changed. Happens from top to bottom. It runs periodically so that...