Filip Trivanfiliptrivan.hashnode.dev·Jan 26, 2025How to make a library in Angular 17Guide and given steps how I transferred general code from specific application to Angular library This document is not for those who are just starting to implement library, if you are just starting see the following Angular guide and come back here, ...Angular 2
Polar The Explorerlogicbricks.hashnode.dev·Jan 25, 2025Why Object.create is more than just Object creation?In JavaScript, the Object.create() method is different from the other object creation methods because it allows prototype-based inheritance explicitly and provides fine control over the created object's prototype and properties. Here's how it stands ...JavaScript
Abdelfattah Ragababdelfattah-r.hashnode.dev·Jan 6, 2025Angular for Beginners: Everything you need to know by Abdelfattah RagabAngular for Beginners Everything you need to know Abdelfattah Ragab Introduction Welcome to the book “Angular for beginners: Everything you need to know”. In this book, I'll tell you all about Angular in a free discussion format. What is Angular, how...Angular
Indrajeetcodewords.hashnode.dev·Jan 2, 2025Test Your Angular Expertise: 90+ Practical Tasks + SolutionsAngular scenario based basic interview explained 1. Create a simple Angular component and display "Hello Angular". Solution: // hello.component.ts import { Component } from '@angular/core'; @Component({ selector: 'app-hello', template: `<h1>Hell...Interviews kitAngular
Indrajeetcodewords.hashnode.dev·Dec 29, 2024Prepare for Angular Interviews with Over 110+ Essential Concepts1. What is Angular? Answer: Angular is a platform for building client-side applications using TypeScript, HTML, and CSS. It provides powerful tools like routing, forms, HTTP handling, and dependency injection. Code: @Component({ selector: 'app-root...Interviews kitAngular
Omkar Lolageangular-beginners-guide.hashnode.dev·Dec 8, 2024Mastering Angular: A Deep Dive into Core Essentials for BeginnersIntroduction The world of front-end web development is continuously evolving, choice of framework or library is crucial. Angular is a powerful framework used by developers worldwide to build dynamic and scalable web applications. In this blog, we'll ...10 likes·61 readsbasics of angular
Angular Academyblog.angularacademy.ca·Nov 28, 2024Angular Performance Optimization Workshop in December!Unleash the Full Potential of Your Applications with our Angular Performance Optimization Workshop this December! In today's fast-paced world, web application performance is more critical than ever. As you know, a slow-loading application can lead to...Angular
Alok Raturiraturialok.hashnode.dev·Oct 5, 2024How the Host property Works in Angular @ComponentIn Angular, the host property is used to bind properties, attributes, and events to the component’s host element, which is the DOM element matching the component’s selector. In Angular, the component’s selector is visible in the DOM tree. As shown in...Angular
Dany Paredesdanywalls.com·Aug 1, 2024When to Use concatMap, mergeMap, switchMap or exhaustMap Operators in Building a CRUD with NgRxA few days ago, I was working with NgRx effects in an application,where I needed to get data from the store and combine it with service calls involving asynchronous tasks. When working with combined streams, it's important to choose the appropriate o...1 like·632 readsAngular
Lorenzo Zarantonellolorenzozar.hashnode.dev·Jul 31, 2024Nx Angular Lazy-loading LibrariesSo far, our Nx angular standalone application has three independent libraries and a shared module (library) that could contain shared code for the libraries. In the following example, I’ll show how to lazy-load one library. For the sake of simplicity...Angular