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...DiscussAngular
Dany ParedesProdanywalls.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...Discuss·1 like·412 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...DiscussAngular
Lorenzo Zarantonellolorenzozar.hashnode.dev·Jul 30, 2024Nx Angular Code GeneratorsStraight from the documentation, "Similar to the Angular CLI, Nx comes with code generation abilities. What the Angular CLI calls 'Schematics,' Nx calls 'Generators.'" Shortly: Angular Schematics = Nx Generators So, basically, Nx generators help yo...DiscussAngular
Rubén Peregrinarubenperegrina.com·Jul 17, 2024Goodbye Zone.js: What's new in Angular 18?Angular 18 is revolutionizing the way change detection is handled, removing the dependency on Zone.js. This change began in Angular 17 with the introduction of Signals. Now, instead of depending only on Signal components, the new hybrid detection sys...Discuss·7 likes·440 readsAngularAngular
Amit Waniblog.amitwani.dev·Jun 29, 2024Recruitify - Built using AWS Amplify, DynamoDB, Lambda, BedrockWhat I Built Recruitify is a platform designed to bridge the gap between job seekers and employers. It provides a seamless experience for both parties to find the perfect match for their needs. Features Employer Create Job Postings: Employers can cr...Discuss·39 readsAWS
Computer Garagecomputerg.hashnode.dev·Jun 23, 2024Firebase and Angular Integration: Complete WalkthroughI often use Firebase because it is free and offers many benefits for learning. Firebase provides a backend cloud computing service with a NoSQL database called Firestore. Whenever I created a frontend application using Angular, I faced issues connect...DiscussAngular Firebase integration
Rubén Peregrinarubenperegrina.com·Jun 17, 2024Generate documentation for your Angular application with CompodocOne of the tasks that every developer hates is documenting. We know that it is very important and could be helpful in the future, but it's a tedious task. Documentation is another part of development, the same as taking the recruitment, development, ...Discuss·18 likes·910 readsAngularcompodoc
Dany ParedesProdanywalls.com·Jun 4, 2024How to Use NgRx Selectors in AngularIn NgRx, when we want to get data from the store, the easiest way is by using store.select. It allows us to get any slice of the state. Yes, it sounds funny, but any slice returns an Observable<any>. For example: It is flexible but also risky becaus...Discuss·476 readsAngularNgRx
Dany ParedesProdanywalls.com·Jun 3, 2024How to Implement ActionCreationGroup in NgRxWhen you create actions in NgRx, you usually use the createAction function helper. We write our action names with an inline string about the source and the event, like [Cart] Update Price. This action is clearly linked with the Cart feature in our ap...Discuss·272 readsAngularNgRx