{"id":26198018,"url":"https://github.com/techiediaries/angular-cookbook","last_synced_at":"2025-12-25T02:39:22.069Z","repository":{"id":52576104,"uuid":"285293379","full_name":"techiediaries/angular-cookbook","owner":"techiediaries","description":"Angular 10/9 Cookbook","archived":false,"fork":false,"pushed_at":"2021-04-25T09:26:48.000Z","size":44,"stargazers_count":58,"open_issues_count":1,"forks_count":12,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-04-14T12:56:44.470Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/techiediaries.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-05T13:17:16.000Z","updated_at":"2024-01-04T16:49:05.000Z","dependencies_parsed_at":"2022-09-23T12:42:34.389Z","dependency_job_id":null,"html_url":"https://github.com/techiediaries/angular-cookbook","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techiediaries%2Fangular-cookbook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techiediaries%2Fangular-cookbook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techiediaries%2Fangular-cookbook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techiediaries%2Fangular-cookbook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/techiediaries","download_url":"https://codeload.github.com/techiediaries/angular-cookbook/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243147264,"owners_count":20243745,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-12T02:49:38.766Z","updated_at":"2025-12-25T02:39:22.042Z","avatar_url":"https://github.com/techiediaries.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Angular 10/9 Cookbook\n\nThroughout this cookbook examples you'll learn Angular--one of the most popular platforms for building front-end web applications\n\nUsing Angular, you can take advantage of a powerful TypeScript platform and tools to create applications for web, mobile and desktop. TypeScript is a superset of JavaScript with powerful OOP abstracts and a strongly typed system that compiles to JavaScript.\n\nWith Angular you have strong tools and design patterns to build either small or large web projects.\n\nAngular is developed and maintained by Google. It has a large community which means you can find help on the web if you have any issues implementing your project requirements.\n\nOur Angular learning path will offer the necessary tutorials, PDF books, for beginners, and examples to get started using this framework in your next project.\n\n## Introducing Angular 10\n\n[AngularJS](https://angularjs.org/)  was the most popular client-side framework among JavaScript developers for many years. Google introduced AngularJS in 2012. It's based on a variation of the very popular  [Model-View-Controller pattern](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller)  which is called Model-View-*.\n\nThe AngularJS framework, was built on top of JavaScript with the aim to decouple the business logic of an application from the low level DOM manipulation and create dynamic websites. Developers could use it to either create full-fledged SPAs and rich web applications or simply control a portion of a web page which makes it suitable for different scenarios and developer requirements.\n\n### Data Binding\n\nAmong the powerful concepts that were introduced by AngularJS, is the concept of  [data binding](https://docs.angularjs.org/guide/databinding)  which enables the view to get automatically updated whenever the data (the model layer) is changed and inversely.\n\n### Directives\n\nThe concept of  [directives](https://docs.angularjs.org/guide/directive)  was also introduced by AngularJS, which allows developers to create their own custom HTML tags.\n\n### Dependency Injection\n\nThe other introduced concept is  [Dependency Injection](https://docs.angularjs.org/guide/di), which allows developers to inject what's called services (singletons that encapsulates a unique and re-usable functionality within an application) into other components which encourages re-usability of the code.\n\n## Why Learning Angular 10?\n\nBy learning Angular, you'll have more chances of finding a job as a front-end developer! So in this learning path, will teach you the framework through building several examples from scratch.\n\nYou'll learn about:\n\n-   Anglular CLI.\n-   Angular components and modules,\n-   Angular template syntax and data binding: Interpolation and Event binding,\n-   Angular pipes,\n-   Angular directives,\n-   Angular services,\n-   Angular  `HttpClient`,\n-   Angular routing,\n-   Angular Material,\n-   Using Bootstrap with Angular,\n-   Deployment.\n\n## How Long Will it Take to Learn Angular 10?\n\nThis depends of what you mean by learning Angular. If you want to be able to build and deploy a production-ready Angular application in a reasonable timeframe, this will probably take byou etween 6 and 12 months depending on your background and existing skills.\n\n## Is Angular Easy to Learn?\n\nIf you have a good knowledge of the three pillars of the web i.e JavaScript, CSS and HTML, Angular may be easy to learn. If you are a beginner front-end web developer that would be very difficult.\n\n## The Prerequisites to Learn Angular?\n\nYou'll need to have a good knowledge of HTML, CSS and JavaScript basics.\n\nA basic Knowledge of TypeScript can be very helpful.\n\n## How Do you Start Learning Angular?\n\nAngular is not like React, it's a complete platform which includes all what you need to build frontend web apps, so learning it will take you more time. Let's make the process easy for you by providing you with a roadmap.\n\nIf you are a beginner frontend web developer, you probably want to start by learning the basics of frontend web development i.e what we call the three pillars of the web, HTML, CSS and JavaScript. You don't need to master these technologies but you should be familiar with the basics and build simple web pages with HTML, style them with CSS and add interactivity with JavaScript.\n\nYou can get started with HTML, JavaScript and CSS from our guides:\n\n-   [HTML Tutorial for Angular developers](https://www.techiediaries.com/html-tutorial/): Angular makes use of regular HTML with an extra template syntax so in this article, we'll introduce you to HTML from an Angular point of vue.\n-   [CSS Tutorial for Angular developers](https://www.techiediaries.com/css-tutorial/): We'll also introduce to CSS and we'll see in the same time how you can start using it in the context of Angular.\n\nAngular makes use of TypeScript instead of plain JavaScript. TypeScript is a super-set of JavaScript that adds object oriented concepts and strong types to the language but before you can run your code in a web browser, you will need to compile it to JavaScript. We'll see later that this is pre-configured for you in your Angular project.\n\nThese are some JavaScript guides in our website:\n\nAnd this is our TypeScript tutorial(s):\n\n-   [TypeScript Tutorial](https://www.techiediaries.com/typescript-tutorial/)\n\n## Our Angular PDF Books\n\n-   [Practical Angular: Build your first web apps with Angular 8](https://www.techiediaries.com/angular-book-build-your-first-web-apps/)\n-   [Learn Angular: Full-Stack \u0026 CRUD Angular 7/8 PDF Tutorial](https://www.techiediaries.com/angular-6-tutorial-pdf/)\n\n## What's a Framework and Why Using it\n\nA JavaScript or client-side framework is an abstraction that provides developers with a set of tools to easily and efficiently develop front-end web applications. Most frameworks dictate many aspects of your web projects like directory structure and configuration files and different tools that can be used for adding essential functionalities like testing.\n\nA client-side framework is built on top of a client side programming language to help abstract the low level APIs of programming languages and client APIs and makes developers more productive. In fact there is only one client-side language which is JavaScript; the plethora of the web and the only language that web browsers understand but there also more sophisticated and modern programming languages that compile to JavaScript such as TypeScript and CoffeeScript. Which means they can also be the base of a client side framework.\n\nFrameworks are all the rage nowadays and most serious JS developers use a framework for building front-end apps and interfaces instead of using plain JavaScript or jQuery.\n\nMost JavaScript frameworks are said to be  **opinionated**  which means their creators enforce their opinions or their own philosophy of how web projects should be configured and organized. This also means, developers should learn the new abstractions provided by the framework and any new concepts besides learning the base programming language.\n\nFrameworks provide abstractions for working with many aspects like for example DOM manipulation and Ajax/HTTP. if the technology deals with only one aspect, it's mostly called a library. For example popular libraries like React or Vue.js deal only with the view or the UI of an application by using a virtual DOM and diffing with the real DOM which provides better performance.\n\nNowadays powerful and modern JavaScript frameworks have emerged and taken the web by storm. Instead of websites with poorly structured JS or jQuery code we have now complete web apps with best practices and code structure with complex and rich UIs. These modern client-side web apps use heavy JavaScript which impacts performance and by result the user experience; and as such even if web browsers became more powerful we still need to follow best practices and battle tested tools and patterns which client-side frameworks try to help with.\n\n## All Angular 10/9/8/7/6 Articles\n\n## Content Projection in Angular 10/9: Pass Data from a Parent Component to a Child Template with Ng-content\n\nContent projection is an Angular concept that helps developers build reusable components. It allows you to pass data from a parent component to a template of a child component\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-ng-content/)\n\n## Lazy Loaded Module Example in Angular 10/9 with loadChildren \u0026 Dynamic Imports\n\nLazy loading is the process of loading some features of your Angular 10 application only when you navigate to their routes for the first time. This can be useful for increasing your app performance and decreasing the initial size of the bundle transmitted to the user's browser\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-lazy-load-module-example/)\n\n## Mock a REST API Back-End for Your Angular 10/9 App with JSON-Server and Faker.js\n\nIn this tutorial, we’ll learn, with a quick example, how to mock a REST API back-end for your Angular 10 application which you can consume using Angular HttpClient even before your real back-end is ready\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-mock-backend/)\n\n## Angular 10/8 Material Data-Table Tutorial \u0026 Example\n\nAngular 10 Material data tables provide a quick and efficient way to create tables of data with common features like pagination, filtering and ordering.\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-material-table/)\n\n## Angular 10/9 Popup Modal Example with Angular Material Form and Modal Dialog Components\n\nIn this tutorial, you'll build an example login UI with a form and modal dialog styled with Angular Material 10.\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-material-login-form-modal-dialog/)\n\n## Angular 10/9 Material Date Picker, Input, CheckBox, Radio Button and Select\n\nIn this tutorial, you'll learn how to use Angular Material to style forms in your Angular 10/9 web app.\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-material-form-datepicker-example/)\n\n## Angular 10/8 Material Dialog with Example\n\nThis tutorial shows you how you can use Angular 7/8 Material to build Material UI dialogs for your web application\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-material-dialogs/)\n\n## Angular 10/9 Router: Resolve \u0026 Route Resolvers Example\n\nThe Angular 10 Router provides a resolve property that takes a route resolver and allows your application to fetch data before navigating to the route (i.e resolving route data)\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-router-resolve/)\n\n## Angular 10/9 Router: Route Animations by Example\n\nThe Angular 10 Router supports adding animations when navigating between different routes in your application. In this tutorial, we'll learn how to use the Angular’s animations API to play animations when a route changes in your application\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-router-animations/)\n\n## Angular 10 Modules\n\nLearn about Angular 10 modules\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-modules/)\n\n## Use JavaScript in Angular 10/9\n\nIn this tutorial, we'll learn how to use external and custom JavaScript libraries/code in Angular 10 projects which are based on TypeScript\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/use-javascript-in-angular/)\n\n## Electron with Angular 10/9 Tutorial\n\nIn this tutorial, we'll learn how to integrate Angular 10 with Electron to build cross-platform desktop apps with the most powerful web technologies\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-electron/)\n\n## Angular 10/9 Data (Event \u0026 Property) Binding by Example\n\nIn this tutorial, we'll continue building our calculator application using Angular 10. We'll be particularly learning about data binding both event and property binding\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-data-event-property-binding/)\n\n## HTML5 Data Attributes in Angular 10/9\n\nIn this quick tutorial, we'll see how you can add/set and access HTML5 data attributes in Angular 10/9\n\n05 Aug 2020\n\n[Read article](https://www.techiediaries.com/add-access-html-data-attribute-angular/)\n\n## Angular 10/9 Elements Tutorial by Example: Building Web Components\n\nIn this Angular 10 Elements tutorial by example we'll learn how to use Angular to build web components or custom elements.\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-elements-web-components/)\n\n## Angular 10 Universal Example Application with Express.js\n\nThroughout this tutorial we are going to build an example, server side rendered, web application with Angular 10 and Express server\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/universal-angular-express/)\n\n## Angular 10/9 SEO: Adding Title and Meta Tags to Your Universal App\n\nIn this tutorial, we'll see in a 3 easy steps how you can render your Angular 10 application on the server to make it SEO-friendly and boost its performance using the Angular Universal technology\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-seo-title-and-meta-tags/)\n\n## Angular 10/9 SEO: Rendering Your App on Server-side with Angular Universal\n\nIn this tutorial, we'll see in a 3 easy steps how you can render your Angular 10 application on the server to make it SEO-friendly and boost its performance using the Angular Universal technology\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-seo-server-side-rendering-with-angular-universal/)\n\n## Angular 10/9 Router Tutorial: Learn Routing \u0026 Navigation by Example\n\nIn this tutorial part, we’ll learn about Angular Router by example and will teach you everything you need to start using Angular routing to build Single Page Applications.\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-8-router-tutorial-learn-routing-and-navigation-by-example/)\n\n## Angular 10 HttpClient Headers and Typed/Full Responses: Pagination Example\n\nIn this tutorial, we'll learn how to get Angular 10 HttpClient headers and full responses\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-httpclient-headers-full-response/)\n\n## 3+ Ways to Add Bootstrap 4 to Angular 10/9 With Example \u0026 Tutorial\n\nIn this tutorial we will see how to use Bootstrap 4 to style websites built using the Angular 10 framework. We'll see how we can easy integrate both of them, using ng-bootstrap vs. ngx-bootstrap packages and using the Angular CLI 10 for generating a brand new project.\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-bootstrap/)\n\n## Angular 10/9 Firestore Database CRUD Tutorial\n\nIn this tutorial, you'll be using Angular 10 with Firebase and Firestore to create am app that implements the common CRUD operations\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-firebase/angular-9-8-firestore-database-crud-tutorial/)\n\n## Deployment to Firebase Hosting with Angular CLI 10 in 5 Easy Steps\n\nYou have finally developed your Angular 10 application and you are ready to deploy it to a hosting provider and show it to the world! But, you think, you still have to do so much work to host the application. Fortunately for you, that's not true any more thanks to the latest 8.3+ version of Angular CLI which added a new command to the Angular developer arsenal\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-firebase/deployment-to-firebase-hosting-angular-cli-9/)\n\n## Angular 10/9 Authentication with Firebase (Google, Email \u0026 Password): Login, Register, Email Verification and Password Recovery\n\nIn this tutorial, you will learn to add email and social authentication with login, register, email verification and password recovery to your Angular 10 app using Firebase and Google\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-firebase/angular-9-firebase-authentication-email-google-and-password/)\n\n## Angular 10/9 ngTemplate \u0026 ngTemplateOutlet Example: Dynamic and Reusable Templates\n\nIn this tutorial, we'll see how to use ng-template and ngTemplateOutlet for creating dynamic and reusable template partials in Angular 10\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-ngtemplate-ngtemplateoutlet/)\n\n## The Angular 10/9 RouterLink, Navigate and NavigateByUrl\n\nIn this tutorial we're going to see how to navigate with the Angular Router using routerLink, Router.navigate() and Router.navigateByUrl()\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-router-routerlink-navigate-navigatebyurl/)\n\n## The Angular 10/9 Router-Outlets: Named and Multiple Outlets (Auxiliary Routes) Example\n\nIn this tutorial, we'll see advanced uses of the `` component such as how to create named, multiple outlets and auxiliary routing\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-router-multiple-outlets/)\n\n## RxJS Observables and Subjects Tutorial with Angular 10/9\n\nIn this tutorial, we'll learn to use the RxJS 6 library with Angular 10/9. We'll learn about how to import the Observable class and the other operators. How to subscribe and unsubscribe from Observables, how to import and call operators and wrap them with the `pipe()` function. We'll also see how to use the async pipe to subscribe to Observables from templates\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/observables-and-subjects-tutorial/)\n\n## Multiple File/Image Upload with Django 3, Angular 10 and FormData\n\nThroughout this tutorial, we'll see how you can implement multiple file upload in Django 3. We'll be using Angular 10 to create a simple interface that allows the user to select multiple files and upload them to the server via POST requests and FormData\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-django-formdata-multiple-file-upload-tutorial/)\n\n## Angular 10/9 ngForm, ngNoForm and Template Reference Variables\n\nIn this quick tutorial, you'll learn how to use NgForm in Angular 10/8 to work with forms. You'll also learn about template reference variables and how you can use them to reference DOM elements or Angular built-in directives (such as ngForm) in your templates\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular-ngform-ngnoform-template-reference-variable/)\n\n## Angular 10/9 Router CanActivate Guards and UrlTree Parsed Routes\n\nWe'll be learning how to use Router Guards and UrlTree data structures to protect the UI if the user is not logged in and redirect them to the login interface if they don't have access to a specific route.\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-router-canactivate-guards-urltree-parsed-routes/)\n\n## Angular 10/9 JWT Authentication Tutorial with Example\n\nIn this tutorial, you'll learn, by example, how you can implement JWT authentication in your Angular 10/9 application\n\n04 Aug 2020\n\n[Read article](https://www.techiediaries.com/angular/jwt-authentication-angular-9-example/)\n\n## Style Angular 10/9 Components with CSS and ngStyle/ngClass Directives\n\nIn this tutorial, we'll learn about CSS and how to use it in Angular 9. We'll see by example how an Angular 9 application generated by Angular CLI is styled\n\n14 Jul 2020\n\n[Read article](https://www.techiediaries.com/angular/style-angular-9-components-with-css-ngstyle-ngclass/)\n\n## Angular 10 HttpClient\n\nHow to use HttpClient to make HTTP Requests in Angular 10\n\n14 Jul 2020\n\n[Read article](https://www.techiediaries.com/angular-http-client/)\n\n## Angular 10 FormBuilder/FormGroup/FormArray and FormControl By Example\n\nIn this tutorial, we'll learn to use Angular forms by creating a simple example using FormBuilder, FormGroup and FormControl APIs\n\n10 Jul 2020\n\n[Read article](https://www.techiediaries.com/angular-formbuilder-formgroup/)\n\n## Angular 10/9 ElementRef/ViewChild/Renderer2 By Example\n\nIn this tutorial, we'll be seeing an example of ElementRef with Angular 9/8. We'll use the online Stackblitz development IDE, so you don't need to set up your development environment or create an Angular project for this quick example\n\n10 Jul 2020\n\n[Read article](https://www.techiediaries.com/angular-elementref/)\n\n## How to Post/Upload FormData (multipart/form-data) with Angular 10, TypeScript and HttpClient\n\nIn this quick tutorial, you'll learn how to work with FormData in Angular 10/9 and how to post it to a web server via a POST request and HttpClient\n\n10 Jul 2020\n\n[Read article](https://www.techiediaries.com/angular-formdata/)\n\n## Angular 10 Material Date Picker with Calendar and Date Range\n\nAngular 10 has been recently released and introduced some new features as usual with any new major release. Among the new features is adding the date range feature to the date picker component of Angular Material.\n\n07 Jul 2020\n\n[Read article](https://www.techiediaries.com/angular-10-material-date-picker-calendar-range/)\n\n## Integrating Google Analytics With Angular 10/9\n\nIn this tutorial, we'll learn too integrate Google Analytics with our Angular 10/9 application. As always, you'll need to be familiar with HTML, CSS and JavaScript/TypeScript and since we'll be using Google Analytics with Angular, you'll need to know the basic concepts of the framework.\n\n06 Jul 2020\n\n[Read article](https://www.techiediaries.com/integrate-google-analytics-angular-10-9/)\n\n## Angular 10 Rating Example With Ng-Bootstrap, Select, ngValue, and Forms\n\nIn this tutorial, we'll see by example how to create a rating component with Bootstrap 4, HTML Select and Angular 10 Forms. We'll be using the ngb-rating component from ng-bootstrap. We'll also see how to use the HTML select control with the ngFor directive inside a reactive form. How to bind select element to a TypeScript object or string literal using [ngValue] and value properties respectively, and how to assign a default value to select from an array of elements.\n\n06 Jul 2020\n\n[Read article](https://www.techiediaries.com/angular-10-rating-form-example-ng-bootstrap-select-ngvalue/)\n\n## Angular 10/9 File Upload Tutorial: Listen for HTTP Events \u0026 Progress Bar Example\n\nIn this tutorial, we'll learn how to upload files in Angular 8. For the backend we'll be using Nest.JS. We'll see how to use HttpClient to send POST request with multipart form data which is used for file uploading. We'll also see how to use reactive forms and progress bar.\n\n09 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular-file-upload-progress-bar/)\n\n## Angular Material 10/9 Tutorial: Build Navigation UI with Toolbar and Side Navigation Menu\n\nAngular Material 8 Tutorial: Build Navigation UI with Toolbar and Side Navigation Menu\n\n09 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular-material-navigation-toolbar-sidenav/)\n\n## Upload Images In TypeScript/Node \u0026 Angular 9/Ionic 5: Working with Imports, Decorators, Async/Await and FormData\n\nIn this tutorial part, we'll learn to customize/upload user profile photos. We assume no previous knowledge of TypeScript which is the programming language used in both Ionic/Angular and Node/Nest.js used to build both the front-end and back-end of our chat application. We'll be also explaining basic concepts such as imports, decorators, Async/Await and HTML5 FormData\n\n06 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular/upload-images-typescript-node-ionic-imports-decorators-async-await-formdata/)\n\n## Angular 9/Ionic 5 Chat App: Unsubscribe from RxJS Subjects, OnDestroy/OnInit and ChangeDetectorRef\n\nIn this tutorial part, we'll implement some changes in our Angular 9/Ionic 5 example app that will allow us to unsubscribe from the RxJS subjects and solve issues related to Angular Change Detection in development and duplicate messages displayed in the chat UI\n\n06 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular/unsubscribe-rxjs-subjects-ondestroy-oninit-changedetectorref/)\n\n## Adding UI Guards, Auto-Scrolling, Auth State, Typing Indicators and File Attachments with FileReader to your Angular 9/Ionic 5 Chat App\n\nIn this tutorial, we'll start by securing the UI of our application using Angular 9 guards then we'll learn how to add support for typing indicators and file attachments using the HTML5 FileReader API in the Ionic 5 and Angular 9 chat application we've built in these previous tutorials. We'll also see how to add automatic scrolling of the chat UI with Angular template variables and the Content.scrollToBottom() method and programmatically trigger click events on the file input element\n\n06 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular/ui-guards-auto-scrolling-filereader-ionic/)\n\n## Private Chat Rooms in Angular 9/Ionic 5: Working with TypeScript Strings, Arrays, Promises, and RxJS Behavior/Replay Subjects\n\nThroughout this tutorial, we'll be learning how to add one-to-one private chat rooms to a chat application built using Angular 9, Ionic 5 , Node and Nest.js. We'll be working with TypeScript Strings, Arrays, Promises, and RxJS Behavior/Replay Subjects. We'll see how to convert a TypeScript promise to an RxJS Observable/Subject, how to use the async/await syntax with the Angular ngOnInit() method and Observable subscribe method, use the Angular Router, ActivatedRoute, and Ionic Storage services and also how to unsubscribe from the RxJS Observables with Angular OnDestroy and ngOnDestroy()\n\n06 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular/typescript-strings-arrays-promises-rxjs-behavior-replay-subjects/)\n\n## Building a Chat App with TypeScript/Node.js, Ionic 5/Angular 9 \u0026 PubNub/Chatkit\n\nIn this first part of a tutorial series to learn how to build a fullstack mobile application with cutting edge technologies like Ionic 5, Node.js (Nest.js), TypeScript, Angular 9. you will be creating the backend project of the application with Nest.js CLI and you'll learn about the available hosted and self-hosted services for implementing chat features in your mobile and web apps\n\n06 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular/typescript-node-ionic-chat/)\n\n## Chat Read Cursors with Angular 9/Ionic 5 Chat App: Working with TypeScript Variables/Methods \u0026 Textarea Keydown/Focusin Events\n\nIn this tutorial we'll implement chat read cursors in our Angular 9 and Ionic 5 Chat App using TypeScript basics like variables and methods, HTML textarea keydown/focusin events and data attributes\n\n06 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular/textarea-keydown-focusin-events/)\n\n## Add JWT REST API Authentication to Your Node.js/TypeScript Backend with TypeORM and SQLite3 Database\n\nIn this tutorial, we'll learn how to create a REST API server for JWT authentication using Node.js (Nest.js) and TypeScript for our Angular 9/Ionic 5 chat application\n\n05 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular/jwt-rest-api-auth-node-typescript-typeorm-database/)\n\n## Building Chat App Frontend UI with JWT Auth Using Ionic 5/Angular 9\n\nIn this tutorial, we are going to create the frontend mobile application using Ionic 5 and Angular 9\n\n05 Jun 2020\n\n[Read article](https://www.techiediaries.com/angular/ionic-chat-ui-jwt-auth/)\n\n## Build an Example Angular 10 Form: ngForm/ngModel vs FormGroup/FormBuilder\n\nIn this tutorial, we'll learn how to build and work with forms in Angular 10 by creating a simple contact form example\n\n04 May 2020\n\n[Read article](https://www.techiediaries.com/build-angular-form/)\n\n## Adding Routing to your Angular 10 App by Example\n\nAdding Angular Routing to your Angular 10 App\n\n04 May 2020\n\n[Read article](https://www.techiediaries.com/angular-routing-tutorial/)\n\n## JavaScript Reactive/Asynchronous Code with RxJS 6, TypeScript \u0026 Angular 10: Callbacks, Promises and Observables\n\nIn this tutorial, we'll learn to use the RxJS 6 library with Angular 10.9. We'll learn about how to import the Observable class and the other operators. How to subscribe and unsubscribe from Observables, how to import and call operators and wrap them with the `pipe()` function. We'll also see how to use the async pipe to subscribe to Observables from templates\n\n04 May 2020\n\n[Read article](https://www.techiediaries.com/javascript-reactive-asynchronous-code-rxjs-6-angular-10/)\n\n## What is an Angular 10 Workspace?\n\nWhat is an Angular 10 Workspace?\n\n04 May 2020\n\n[Read article](https://www.techiediaries.com/angular-workspace/)\n\n## Install Angular 10 CLI with NPM and Create a New Example App with Routing\n\nAngular 10 beta is released so the final release is due soon. Let's see how to install the latest beta version and create a new project\n\n26 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular/install-angular-10-cli-npm-create-new-example-app-routing/)\n\n## Angular 10/9 Update Guide with Examples\n\nIn this guide, we'll learn how to upgrade our project to the latest Angular 10 version and update the dependencies.\n\n25 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular-10-9-update-guide-examples/)\n\n## Styling An Angular 10 Example App with Bootstrap 4 Navbar, Jumbotron, Tables, Forms and Cards\n\n20 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular/style-angular-10-example-bootstrap-4/)\n\n## Integrate Bootstrap 4/jQuery with Angular 10 and Styling the UI With Navbar and Table CSS Classes\n\nIn this Angular 10 tutorial we'll learn how to use Bootstrap 4 to build professional UIs\n\n20 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular/integrate-bootstrap-4-jquery-angular-10/)\n\n## Angular 9/10 Tutorial By Example: REST CRUD APIs \u0026 HTTP GET Requests with HttpClient\n\nIn this Angular 9/10 tutorial, we'll learn to build an Angular 9 example application going through all the required steps from creating/simulating a REST API, scaffolding a new project, setting up the essential APIs, and finally building and deploying your final application to the cloud\n\n17 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-8-tutorial-by-example-rest-crud-apis-http-get-requests-with-httpclient/)\n\n## Angular 10/9 Services\n\nLearn about services in Angular 10 and previous versions\n\n15 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular-services/)\n\n## Angular 10/9 Tutorial and Example: Build your First Angular App\n\nIn this tutorial, you will learn to build your first Angular 10/9 application from scratch\n\n14 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-tutorial-and-example/)\n\n## Angular 9/8 ngIf Tutorial \u0026 Example\n\nThroughout this quick tutorial, you'll be learning about how you can use ngIf in your Angular 6 applications\n\n12 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-ngif-tutorial-example/)\n\n## Build an HTML Table Example Dynamically with Angular 10/9 and ngFor\n\nIn this quick example, let's see how to build an HTML table dynamically with Angular 10 and the ngFor directive\n\n12 Apr 2020\n\n[Read article](https://www.techiediaries.com/build-html-table-example-with-angular-9-8-ngfor/)\n\n## Angular 10 New Features\n\nAngular 10, the next version of one of the most popular front-end frameworks is in beta version at this time. This means we are moving toward the final release of this new version\n\n12 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-10-new-features/)\n\n## Create New Angular 9 Workspace and Application: Using Build and Serve\n\nIn this article, we'll quickly see how to use the Angular CLI to initialize a new workspace and create an application\n\n07 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular/create-new-angular-9-workspace-app-build-serve/)\n\n## Angular 10 Release Date: Angular 10 Will Focus on Ivy Artifacts and Libraries Support\n\nAfter the release of Angular 9, the development team says that the next release, Angular 10, will be focusing on Ivy artifacts\n\n07 Apr 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-10-release-date-ivy-artifacts-libraries-support/)\n\n## HTML5 Download Attribute with TypeScript and Angular 9\n\nIn this article, we'll learn by example what's the HTML download attribute and we'll see how to use it with TypeScript and Angular 9/8 by example\n\n26 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/html-download-attribute-typescript-angular-9-example/)\n\n## Angular 9.1+ Local Direction Query API: getLocaleDirection Example\n\nWith Angular 9.1, you can query for the current local direction at runtime using the getLocaleDirection method\n\n26 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-1-local-direction-query-api-example/)\n\n## Angular 9.1 displayBlock CLI Component Generator Option by Example\n\nIn this article, we'll learn about the new displayBlock option for the Angular 9.1 CLI component generator\n\n26 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-1-displayblock-cli-component-generator-option-example/)\n\n## Angular 9.1 New Features and Ivy: Angular 10 is Coming\n\nAngular 9 new features: better performance and smaller bundle size thanks to Ivy!\n\n26 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-new-features-and-ivy/)\n\n## Angular 9 Basics Tutorial by Example\n\nIn this tutorial, you will learn to build your first Angular 8 application from scratch\n\n12 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-basics-by-example-tutorial/)\n\n## Angular 9/8 ngFor Directive: Render Arrays with ngFor by Example\n\nIn this tutorial, you'll learn about the ngFor directive by example in Angular 9\n\n10 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-ngfor-directive-example/)\n\n## Responsive Image Breakpoints Example with CDK's BreakpointObserver in Angular 9/8\n\nWe'll learn how to implement responsive images in Angular 9/8\n\n08 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/responsive-image-breakpoints-cdk-breakpointobserver-angular-9-8/)\n\n## Angular 9/8 DOM Queries: ViewChild and ViewChildren Example\n\nThe @ViewChild and @ViewChildren decorators in Angular provide a way to access and manipulate DOM elements, directives and components. In this tutorial, we'll see an Angular 8 example of how to use to use the two decorators\n\n03 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-dom-queries-viewchild-viewchildren-example/)\n\n## Installing Node.js v10/12 \u0026 NPM on Ubuntu 20.04/19.04\n\nThis post shows you how you can install Node.js on Ubuntu 19.01 and Ubuntu 20.04 for Angular 9 development\n\n02 Mar 2020\n\n[Read article](https://www.techiediaries.com/ubuntu/install-nodejs-npm-on-ubuntu-20-04/)\n\n## Angular 9 Examples: 2 Ways To Display A Component (Selector \u0026 Router)\n\nIn this quick example, we'll see two ways of displaying a component in Angular 9 - using selectors or the router\n\n02 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-components-selector-router/)\n\n## Angular 9/8 Components by Example\n\nThis tutorial explains Angular 9/8 components, what are they? And how to create them?\n\n02 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-components-example/)\n\n## The Angular 9/8 Router: Route Parameters with Snapshot and ParamMap by Example\n\nIn this tutorial we're going to see how to handle route parameters with the Angular 9/8 Router using different methods: Snapshot and ParamMap Observable\n\n02 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-route-parameters-snapshot-parammap-example/)\n\n## Angular 9/8 Tutorial: Http POST to Node/Express.js Example\n\nIn this tutorial, we'll learn to use the template-driven approach in Angular 9/8 to work with HTML forms. We'll learn about the NgForm, ngModel and ngSubmit and how to create an authentication system with Node and Express.js\n\n02 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-http-post-node-express-example/)\n\n## Angular 9/8 Nested Routing and Child Routes by Example\n\nIn this tutorial, you'll learn to add Angular 9 routing to our module using a routing module, a nested router-outlet and child routes\n\n02 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-nested-routing-child-routes-example/)\n\n## Angular 9/8 Feature and Root Modules by Example\n\nIn this tutorial we will learn about Angular 9 modules by example\n\n02 Mar 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-feature-root-modules-example/)\n\n## Angular 9/8 with PHP: Consuming a RESTful CRUD API with HttpClient and Forms\n\nIn this tutorial, you'll learn to create an example Angular 7 application with a PHP REST API on top of a MySQL database\n\n20 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/php-angular-9-crud-api-httpclient/)\n\n## Angular 9/8 with PHP and MySQL Database: REST CRUD Example \u0026 Tutorial\n\nIn this tutorial, you'll learn to create an example Angular 9/8 application with a PHP REST API on top of a MySQL database\n\n20 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-php-mysql-database/)\n\n## Unit Testing Angular 9/8 Apps Tutorial with Jasmine \u0026 Karma by Example\n\nIn this tutorial, we'll quickly learn how to unit test an Angular 9/8 application with Jasmine and Karma\n\n19 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/unit-testing-angular-9-apps-tutorial-jasmine-karma-example/)\n\n## Jasmine Unit Testing Angular 9 Tutorial\n\nIn this tutorial, we'll present you with a quick and complete guide to testing with Jasmine in Angular 9\n\n19 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/jasmine-unit-testing-angular-9-tutorial/)\n\n## Angular 9 Web Components: Custom Elements \u0026 Shadow DOM\n\nThroughout this tutorial, we’ll teach you to create a native web component using the latest Angular 9 version. Part of standard web components are custom elements and shadow DOM which provide a way to extend HTML by creating your custom HTML tags and encapsulating the DOM tree and CSS styles behind other elements\n\n18 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-web-components-custom-elements-shadow-dom/)\n\n## Angular 9 Renderer2 with Directives Tutorial by Example\n\nIn this tutorial, we'll be learning about Renderer2 in Angular 9/8 and directives which allow you to manipulate DOM. Renderer2 is a service which provides methods like `createElement`, `createText`, `appendChild` and `addClass` that help you query and manipulate the DOM elements in your Angular 9 application\n\n18 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-renderer2-directives-tutorial-example/)\n\n## Build Progressive Web Apps (PWA) with Angular 9/8 Tutorial and Example\n\nThroughout this tutorial, we'll be learning to build an Angular 9 PWA (Progressive Web Application)\n\n18 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-pwa-tutorial-example/)\n\n## Angular 9 Internationalization/Localization with ngx-translate Tutorial and Example\n\nIn this tutorial, we'll see by example how to make your Angular 9 app available in multiple languages (English and French) using ngx-translate, the internationalization (i18n) and localization library for Angular\n\n18 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-internationalization-ngx-translate-tutorial-example/)\n\n## Create Angular 9 Calendar with ngx-bootstrap datepicker Example and Tutorial\n\nIn this tutorial, we'll see how to create an Angular 9 calendar UI with the datepicker component available from ngx-bootstrap\n\n18 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-calendar-ngx-bootstrap-datepicker-tutorial/)\n\n## Multiple File Upload with Angular 9 FormData and PHP by Example\n\n14 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/multiple-file-upload-angular-9-formdata-php-example/)\n\n## Angular 9/8 Reactive Forms with Validation Tutorial by Example\n\nIn this tutorial, we'll learn to use the template-driven approach in Angular 9/8 to work with forms. We'll learn about the NgForm, ngModel and ngSubmit and how to create an authentication system with Node and Express.js\n\n14 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-reactive-forms-validation-tutorial-example/)\n\n## Angular 9/8 Template Forms Tutorial: Example Authentication Form (ngModel/ngForm/ngSubmit)\n\nIn this tutorial, we'll learn to use the template-driven approach in Angular 7/8 to work with forms. We'll learn about the NgForm, ngModel and ngSubmit and how to create an authentication system with Node and Express.js\n\n14 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-template-forms-tutorial-example/)\n\n## Angular 9/8 JAMStack By Example\n\nlet's learn to build a JAMstack application with Angular 9, HTML and a third-party API. The app is simply a news app that can be served from a CDN like Netlify. It's made of only HTML, CSS and JavaScript\n\n10 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-jamstack-example/)\n\n## Angular HttpClient v9/8 — Building a Service for Sending API Calls and Fetching Data\n\nIn this tutorial, you'll be learning, by example, how to use Angular 7/8 and HttpClient to send HTTP requests to remote servers for fetching, creating and updating data.\n\n07 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-httpclient-9-8-service-api-calls-and-fetching-data/)\n\n## Upgrade Angular 8/7 to Angular 9 With Ng Update \u0026 Angular CLI v9\n\nIn this short guide we'll see how to update Angular core framework and Angular CLI 8/7 to the latest Angular 9 version and upgrading existing projects to use v9\n\n07 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/upgrade-angular-8-7-to-angular-9-with-cli-ng-update/)\n\n## Build an Angular 9/8 CRUD Example \u0026 Tutorial\n\nIn this tutorial, we'll learn to build an Angular CRUD example from scratch using the latest version which is as the time of this writing Angular 9\n\n05 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-8-crud-example-and-tutorial/)\n\n## Styling An Angular 9/8/7 Example App with Bootstrap 4 Navbar, Jumbotron, Tables, Forms and Cards\n\nIn this tutorial, we'll learn how to integrate and use bootstrap 4 with Angular 9.\n\n04 Feb 2020\n\n[Read article](https://www.techiediaries.com/angular/styling-angular-9-8-7-example-with-bootstrap-4-navbar-tables-forms-and-cards/)\n\n## Angular 9/8 CLI Commands: Install Angular CLI On Windows 10, Linux and macOS\n\nIn this tutorial you'll be learning how to use Angular CLI 9 (the latest version as of this writing) on Windows, Linux and macOS to create Angular applications and different constructs like modules, services, components and pipes etc.\n\n24 Jan 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-9-8-cli-commands-install-angular-cli-on-windows-10-linux-and-macos/)\n\n## Angular 9/8/7 Realtime Chat Example with Node.js, Socket.io and WebSocket\n\nIn this tutorial, we'll learn how to build a real-time app with Angular 9/8, Socket.IO, WebSocket, and Node.js\n\n15 Jan 2020\n\n[Read article](https://www.techiediaries.com/angular-9-realtime-chat-example-with-nodejs-socketio-and-websocket/)\n\n## Angular 9/8/7 Routing Tutorial: Angular Router by Example with Parameters and Guards\n\nIn this tutorial, you will learn to implement routing in Angular 9/8/7\n\n15 Jan 2020\n\n[Read article](https://www.techiediaries.com/angular-9-8-7-routing-tutorial-angular-router-by-example-with-parameters-and-guards/)\n\n## RxJS Observable Pipe, Subscribe, Map and Filter Examples with Angular 9/8\n\nIn this tutorial we'll learn by example to use the RxJS pipe() function, the map() and filter() operators in Angular 9. And how to use the subscribe() method to subscribe to Observables\n\n05 Jan 2020\n\n[Read article](https://www.techiediaries.com/observable-pipe-subscribe-map-and-filter-examples/)\n\n## Angular 9/8 Ajax Get and Post Requests Example\n\nIn this post, we'll create a simple example with Angular 9/8 and HttpClient that sends Get and Post requests to fetch and post data from/to a backend server\n\n04 Jan 2020\n\n[Read article](https://www.techiediaries.com/angular-9-ajax-get-and-post-requests-example/)\n\n## Angular 8/7 Tutorial By Example: (REST API, HttpClient GET, Components, Services \u0026 ngFor)\n\nIn this tutorial, you'll learn by example how to send GET requests to REST API servers in your Angular 8 application using HttpClient. We’ll also learn how to use the basic concepts of Angular like components and services and how to use the ngFor directive to display collections of data.\n\n03 Jan 2020\n\n[Read article](https://www.techiediaries.com/angular/angular-8-7-tutorial-example-rest-api-httpclient-get-ngfor/)\n\n## Angular 9/8 (Reactive) Forms: How to Use FormBuilder, FormGroup and FormControl APIs by Example\n\nIn this tutorial, we'll learn to use Angular forms by creating a simple example using the reactive form approach. We'll see how to use Angular `FormBuilder, FormGroup and FormControl APIs to easily build a form\n\n30 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-forms/)\n\n## Angular 9/8 How-To: What is the Router-Outlet and how to use it?\n\nThe router-outlet is a directive that's available from the @angular/router package and is used by the router to mark where in a template, a matched component should be inserted.\n\n27 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-9-8-router-outlet/)\n\n## Angular 9/8 How-To: Build a Material File Upload UI with MatProgressBar, MatButton , MatIcon and MatCard\n\nIn this quick how-to tutorial, we'll see how to build a file/image uploading UI with Angular 9 Material components such as MatProgressBar, MatIcon, MatCard, and MatButton\n\n27 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-9-8-material-file-upload-with-progressbar/)\n\n## Angular 9/8 Http - How to Use HttpClient Module with Examples\n\nIn this how-to tutorial, we'll learn what is the HttpClient API available from HttpClientModule and how to use it in Angular 9 by example with request timeout, responsetype, query parameters, http headers, custom http headers, interceptors, typed and full responses, and error handling.\n\n27 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-http-client/)\n\n## Angular 9/8 How-To: Create Angular Components?\n\nIn this quick how-to post, we'll learn how to use the ng generate component command of Angular CLI, or its ng g c shortcut command, for creating Angular components in your project.\n\n24 Dec 2019\n\n[Read article](https://www.techiediaries.com/how-to-create-angular-9-8-components/)\n\n## Angular 9/8 How-To: Pass URL Query Parameters with HttpClient, HttpParams and fromString\n\nIn this how-to article, we'll learn how to use fromString and HttpParams to pass query parameters to URLs or REST API endpoints\n\n22 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-9-8-url-query-parameters-with-httpparams-and-fromstring/)\n\n## Angular 9/8/7 Tutorial: Build an Example App with Angular CLI, Angular Router, HttpClient \u0026 Angular Material\n\nThroughout this Angular 9 tutorial, we’ll learn to build an example web application using APIs like HttpClient, Angular Router, and Material Design. We'll learn to generate components and services using Angular CLI and depoly your final app to the cloud (Firebase).\n\n21 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-9-8-7-tutorial-build-an-example-app-with-angular-cli-router-httpclient-and-angular-material/)\n\n## Angular 9/8/7 How-To: Handle HttpClient Errors with RxJS' catchError() and throwError()\n\nIn this quick how-to article, we'll see by example how to handle Http errors in Angular 9 apps\n\n21 Dec 2019\n\n[Read article](https://www.techiediaries.com/handle-angular-9-8-7-httpclient-errors-with-rxjs-catcherror-and-throwerror/)\n\n## Angular 9/8 How-To: Use Angular CLI to Initialize \u0026 Serve New Angular Projects\n\nIn this quick how-to tutorial, we'll see how to use Angular CLI v9, as of this writing, to generate a project and serve it locally using a live-reload development server.\n\n21 Dec 2019\n\n[Read article](https://www.techiediaries.com/use-angular-cli-to-initialize-and-serve-new-angular-9-8-projects/)\n\n## Angular 9/8 Services \u0026 Dependency Injection via providedIn, root \u0026 any Tutorial\n\nIn this tutorial, we'll be learning about Angular services using the latest Angular 9 version. We'll also learn about dependency injection and its mechanisms such as the `@Injectable` decorator and the providedIn property which can take the root and any values or a specific module that will be explaining next.\n\n12 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-9-8-services-and-dependency-injection-via-providedin-tutorial/)\n\n## Angular 9/8 How-To: Path Redirection and Handling 404 Paths Using Router Wildcard Routes\n\nIn this quick example, we'll see how to redirect users to a new URL path or component using the Angular router and how to deal with not found pages and redirect to a 404 component if no match is found using wildcard paths\n\n12 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-9-8-path-redirection-and-handling-404-using-wildcard-routes/)\n\n## Angular 9/8 MEAN Stack Authentication Tutorial \u0026 Example: Node and MongoDB Backend\n\nIn this step by step tutorial, we'll be building an example app with JWT authentication and REST APIs based on the MEAN stack. We'll be using Angular 9 for the frontend and Node.js along with Express and MongoDB in the backend\n\n11 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-9-8-mean-stack-authentication-tutorial-and-example-with-node-and-mongodb/)\n\n## Angular 9 CRUD Tutorial: Consume a Python/Django CRUD REST API\n\nThroughout this tutorial for beginners, we'll learn to build a full-stack example web application with Angular 9, the latest version of the most popular framework/platform for building mobile and desktop client side applications created and used internally by Google.\n\n06 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-crud-tutorial-consume-a-rest-api/)\n\n## Angular 7/8 By Example with HttpClient, Async Pipe and Observables\n\nHow to use HttpClient to make HTTP GET requests in Angular 7/8\n\n04 Dec 2019\n\n[Read article](https://www.techiediaries.com/angular-by-example-httpclient-get/)\n\n## Angular 9 Examples: Conditional Rendering With *ngIf \u0026 Else\n\nIn this example, we'll see how to conditionally render a component or HTML element in Angular 9 using the *ngIf directive\n\n22 Nov 2019\n\n[Read article](https://www.techiediaries.com/angular-conditional-rendering-example-with-ngif-directive/)\n\n## How to Check Installed Angular CLI Version \u0026 Update to Latest Angular 9 Version Globally\n\nIn this quick tutorial, we'll see how to check the currently-installed Angular CLI version and update it to the latest Angular 9\n\n18 Nov 2019\n\n[Read article](https://www.techiediaries.com/check-angular-cli-version-and-update-to-latest-angular-version/)\n\n## Angular 9/8 Tutorial \u0026 Example — Upload files with FormData, HttpClient, RxJS, and Material ProgressBar\n\nIn this tutorial, we’ll see by example how to upload multiple image files using FormData, HttpClient (for posting multipart/form-data), Angular 9/8 and TypeScript\n\n14 Nov 2019\n\n[Read article](https://www.techiediaries.com/angular-9-8-tutorial-example-upload-files-with-formdata-httpclient-rxjs-and-material-progressbar/)\n\n## Import \u0026 Read Local JSON Files in Angular 7/8 and TypeScript 2.9+\n\nIn this tutorial, we'll see by example how to import and read local JSON files in Angular 8 applications and TypeScript 2.9+\n\n20 Oct 2019\n\n[Read article](https://www.techiediaries.com/import-local-json-files-in-typescript/)\n\n## RxJS of() Example: Mocking Data with an Angular 7/8 Service and Observables\n\nIn this tutorial, we'll learn by example how to use the of() operator of RxJS with Angular 8\n\n20 Oct 2019\n\n[Read article](https://www.techiediaries.com/rxjs-of-tutorial-and-example/)\n\n## Fixing CORS Issues in Your Front-End Angular 7/8 App with Angular CLI Proxy Configuration\n\nIn this tutorial we'll learn in a few steps how to fix CORS issues in our front-end Angular 8 app using the Angular CLI proxy configuration\n\n20 Oct 2019\n\n[Read article](https://www.techiediaries.com/fix-cors-with-angular-cli-proxy-configuration/)\n\n## 3 Methods for Reading Local JSON Files in Angular 7/8\n\nIn this tutorial, we'll present you 3 ways to read local JSON files in your Angular 8 application with examples\n\n20 Oct 2019\n\n[Read article](https://www.techiediaries.com/angular-local-json-files/)\n\n## Angular 7/8 HttpClient Interceptors: Mocking HTTP Requests Example\n\nIn this tutorial, we'll learn by example to use HttpClient Interceptors to mock a back-end for your Angular 8 app. This way you can develop your Angular 8 app without a back-end\n\n20 Oct 2019\n\n[Read article](https://www.techiediaries.com/angular-interceptors-mock-http-requests-example/)\n\n## Backendless Angular 9/8 Tutorial: Mocking HttpClient Using an In-Memory CRUD API Example\n\nIn this tutorial, you'll see, by example, how to use the in-memory web api module with Angular 8 to create a fake REST API back-end with CRUD operations. This is very useful for front-end developers that don't have a back-end yet or for testing your front-end app.\n\n17 Oct 2019\n\n[Read article](https://www.techiediaries.com/angular-inmemory-web-api/)\n\n## Modern and Legacy JavaScript: Differential Loading with Angular 8 Tutorial\n\nIn this JavaScript tutorial designed for Angular developers, we'll learn how Angular 8 makes differential loading to send separate modern and legacy JavaScript bundles to web browsers based on their capabilities thanks to the module and nomodule attributes and browserslist. Next, we'll introduce the various new features of modern JavaScript to Angular devs then finally we'll see how to include custom JavaScript code in our Angular apps\n\n19 Sep 2019\n\n[Read article](https://www.techiediaries.com/javascript-tutorial-and-example/)\n\n## CSS Tutorial with Angular 9/8: ngClass, ngStyle \u0026 ViewEncapsulation\n\nIn this tutorial, we'll learn about CSS and how to use it in Angular apps. We'll see by example how an Angular 8 application generated by Angular CLI is styled\n\n15 Sep 2019\n\n[Read article](https://www.techiediaries.com/css-tutorial/)\n\n## HTML Tutorial: Angular 7/8 Template Syntax - Interpolation, ngFor \u0026 ngIf Directives\n\nIn this tutorial, we’ll teach you HTML which is used as the template language for Angular. We’ll build a simple HTML app before tackling any Angular concepts since it’s a prerequisite in any web development and one of the three pillars of the web along with JavaScript and CSS.\n\n14 Sep 2019\n\n[Read article](https://www.techiediaries.com/html-tutorial/)\n\n## GraphQL Tutorial with Angular 7/8 and Apollo Example\n\nIn this tutorial, we'll teach you about the fundamental GraphQL concepts starting with an introduction and then explain the building blocks for a GraphQL API. Next, we'll learn to consume a GraphQL API with Angular 7/8 and Apollo\n\n14 Sep 2019\n\n[Read article](https://www.techiediaries.com/graphql-tutorial/)\n\n## Responsive Images Tutorial for Angular 7/8 Devs\n\nResponsive images are a necessity in this interconnected world. A website needs to work well on multiple devices, as users may access your site through their phone, tablet or laptop. This tutorial will explain what are responsive images and provide some tips to help you apply them. We'll also see how to implement responsive images in Angular 7/8\n\n13 Sep 2019\n\n[Read article](https://www.techiediaries.com/responsive-images-tutorial/)\n\n## Angular 7/8 \u0026 Bootstrap 4 UIs: ng-bootstrap and ngx-bootstrap [Part 1]\n\nIn this tutorial series, you'll learn to use Angular 7/8 \u0026 Bootstrap 4 to build professional grade UIs.\n\n11 Sep 2019\n\n[Read article](https://www.techiediaries.com/angular-bootstrap-ui/)\n\n## Angular 7/8 Tutorial Course — Build a Portfolio Web Application with Angular\n\nAngular 8 is out and we'll use it to continue with our front-end tutorial series designed for Python developers. This tutorial is part of an ongoing series for teaching Angular to Python developers. Saying that; this tutorial can be also followed by front-end developers that don't use Python as their back-end language.\n\n10 Sep 2019\n\n[Read article](https://www.techiediaries.com/angular-tutorial-basics/)\n\n## JavaScript Promises Tutorial with Angular 7/8 Example\n\nIn this tutorial designed for Angular developers, you'll learn about JavaScript Promises introduced in ES6 and you'll see how you can use them with an Angular 7/8 example.\n\n05 Sep 2019\n\n[Read article](https://www.techiediaries.com/javascript-promises-tutorial-example/)\n\n## JavaScript Async/Await with Angular 7/8 Observable and HTTP Example\n\nIn this tutorial, we'll learn about JavaScript/ES7 async and await keywords and we'll see how you can use them to write better asynchronous code in your Angular 7/8 apps with an example using HttpClient for sending HTTP requests and RxJS Observables.\n\n05 Sep 2019\n\n[Read article](https://www.techiediaries.com/javascript-async-await-tutorial/)\n\n## CSS Grid Layout Tutorial: Holy Grail Angular 10 UI\n\nThis CSS Grid layout tutorial is designed for Angular 7/8 developers that want to learn how to build responsive layouts with modern CSS. We'll first start with a general introduction to learn about the basic concepts and then we'll see how to use it within an Angular 7/8 app to create the famous holy grail layout.\n\n04 Sep 2019\n\n[Read article](https://www.techiediaries.com/css-grid-layout-tutorial/)\n\n## Webpack 4 Tutorial with Angular 10\n\nIn this tutorial, we'll be introducing Webpack to Angular developers. We'll also see a simple example of using a custom webpack configuration in Angular 10\n\n01 Sep 2019\n\n[Read article](https://www.techiediaries.com/webpack-tutorial/)\n\n## Angular Semantic Versions\n\nLearn about Angular versions\n\n23 Aug 2019\n\n[Read article](https://www.techiediaries.com/angular-versions/)\n\n## Angular 8 Book: Build your first web apps with Angular 8\n\nPractical Angular: Build your first web apps with Angular 8\n\n11 Aug 2019\n\n[Read article](https://www.techiediaries.com/angular-book-build-your-first-web-apps/)\n\n## TypeScript Tutorial for Angular 7/8 Devs\n\nIn this tutorial, we'll learn about TypeScript. The language of Angular\n\n29 Jul 2019\n\n[Read article](https://www.techiediaries.com/typescript-tutorial/)\n\n## The OOP Concepts with TypeScript: Inheritance, Abstraction, Polymorphism and Encapsulation\n\nIn this article, we'll learn about the Object Oriented Programming or OOP concepts in TypeScript such as inheritance, abstraction, polymorphism and encapsulation.\n\n29 Jul 2019\n\n[Read article](https://www.techiediaries.com/object-oriented-programming-concepts/)\n\n## CSS Centering with Angular 7/8 Example\n\nIn this tutorial, we'll learn how to center elements in CSS and Angular 8\n\n23 Jul 2019\n\n[Read article](https://www.techiediaries.com/css-centering/)\n\n## FormData Explained + Ajax, Angular 9, Ionic 5, and React Examples\n\n16 Jul 2019\n\n[Read article](https://www.techiediaries.com/formdata/)\n\n## PHP Tutorial with Angular 8\n\nIn this tutorial, we'll learn web development with php and we'll compare php with various solutions such as Python \u0026 Django and Ruby On Rails\n\n08 Jun 2019\n\n[Read article](https://www.techiediaries.com/php-tutorial/)\n\n## Angular 10 Material Design Tutorial \u0026 Example\n\nIn this tutorial, we'll be learning how to use Angular 8 Material Design to build a beautiful and professional grade UI interface for our Angular front-end application\n\n06 Jun 2019\n\n[Read article](https://www.techiediaries.com/angular-material-tutorial-example/)\n\n## Angular 8 Tutorial: Build your First Angular App\n\nIn this tutorial, you will learn to build your first Angular 8 application from scratch.\n\n04 Jun 2019\n\n[Read article](https://www.techiediaries.com/angular-8-tutorial-build-first-angular-calculator-app/)\n\n## Django REST Framework Image File Upload Tutorial \u0026 Example [FormData \u0026 Angular 7 UI]\n\nThroughout this tutorial, we'll see how you can implement file upload in Django and Django REST Framework with a step by step example. Our application will expose an /upload endpoint that accepts POST requests that contain the file posted with a multipart/form-data content type using FormData. For the frontend, we'll be using Angular 7 to create a simple interface that allows the user to select a file and upload it to the server via a POST request and FormData.\n\n08 Mar 2019\n\n[Read article](https://www.techiediaries.com/django-rest-image-file-upload-tutorial/)\n\n## PHP Image/File Upload Tutorial and Example [FormData and Angular 7 Front-End]\n\nIn this tutorial, you'll learn how you can upload files in your PHP web application. We'll not use any framework but plain PHP. Next, we'll see how we can use Angular 7 to create a frontend that provides a form for uploading an image file to the backend using FormData and HttpClient. We'll be also looking at how to create a reactive form with Angular.\n\n06 Mar 2019\n\n[Read article](https://www.techiediaries.com/php-file-upload-tutorial/)\n\n## Angular 7|6 Tutorial Course: CLI, Components, Routing \u0026 Bootstrap 4\n\nIn this course, you'll learn to develop your first Angular 7 application with routing, CRUD operations and Bootstrap 4 UI\n\n27 Dec 2018\n\n[Read article](https://www.techiediaries.com/angular-course/)\n\n## Angular 7|6 Tutorial Course: Authentication with Firebase (Email \u0026 Password)\n\nIn this course, you'll learn to develop your first Angular 7 application with routing, CRUD operations and Bootstrap 4 UI\n\n27 Dec 2018\n\n[Read article](https://www.techiediaries.com/angular-course-firebase-authentication/)\n\n## Angular 7!\n\nAngular 7 beta is released\n\n15 Aug 2018\n\n[Read article](https://www.techiediaries.com/angular-7/)\n\n## Getting started with Material Design 6 in Angular 6\n\nHow to get started with Material Design 6 in Angular 6\n\n28 Jul 2018\n\n[Read article](https://www.techiediaries.com/angular-material-design/)\n\n## Deploying Angular 6|7 Apps to Github Pages\n\nIn this tutorial we'll see how to deploy Angular 6 apps to Github pages\n\n27 Jul 2018\n\n[Read article](https://www.techiediaries.com/deploy-angular-github-pages/)\n\n## Building Angular 6|7 Universal Apps (Server Side Rendering)\n\nIn this tutorial we'll see how to render Angular 6 universal apps on the server\n\n27 Jul 2018\n\n[Read article](https://www.techiediaries.com/angular-4-universal-server-side-rendering/)\n\n## RxJS 6 for Angular Developers Tutorial by Example\n\nIn this RxJS 6 tutorial you'll learn about the latest version of RxJS, a library that implements Reactive programming in JavaScript. You'll learn about the core RxJS 6 concepts such as Observables, Observers, Subjects, Streams, Subscriptions and Operators.\n\n18 Jul 2018\n\n[Read article](https://www.techiediaries.com/rxjs-tutorial/)\n\n## Angular 6|7 Router: Lazy Loading Modules Tutorial (loadChildren() Example)\n\nIn this tutorial, we'll see by example Angular 6 routing and lazy loading components using feature modules and the loadChildren() method\n\n17 Jul 2018\n\n[Read article](https://www.techiediaries.com/angular-routing-lazy-loading-loadchildren/)\n\n## Ionic 4/Angular Tutorial - Ionic 4 Router (Routing and Navigation Example)\n\nThroughout this tutorial, we'll see how to add routing to Ionic 4 with the Angular 6 router\n\n25 Jun 2018\n\n[Read article](https://www.techiediaries.com/ionic-4-angular-routing/)\n\n## Ionic 4 Upgrade: Updating From Ionic 3 to Ionic 4/Angular 6\n\nThroughout this tutorial, we'll see how to upgrade your Angular 6 project to use RxJS 6\n\n20 Jun 2018\n\n[Read article](https://www.techiediaries.com/ionic-angular-upgrade/)\n\n## Angular 6 Upgrade: Migrating to RxJS 6\n\nThroughout this tutorial, we'll see how to upgrade your Angular 6 project to use RxJS 6\n\n19 Jun 2018\n\n[Read article](https://www.techiediaries.com/angular-6-upgrade-rxjs-6/)\n\n## Learn Angular: Full-Stack \u0026 CRUD Angular 7/8 PDF Tutorial\n\nIn this Angular 7/8 PDF tutorial, you'll going to learn how to build full-stack web applications with Angular 8 and a Python back-end.\n\n09 Jun 2018\n\n[Read article](https://www.techiediaries.com/angular-6-tutorial-pdf/)\n\n## Angular 6|5 Tutorial: Integrating Angular with Django\n\nIn this tutorial we'll see how we can integrate the Angular 6 front-end application with the Django back-end.\n\n29 May 2018\n\n[Read article](https://www.techiediaries.com/django-angular-tutorial/)\n\n## Angular Tutorial (Updated to Angular 7)\n\nIn this tutorial series we'll cover, the new Angular 6 features, the basics and the in-depth concepts of Angular 4/5/6 framework, starting with how to install the Angular CLI 6 and how to upgrade an existing Angular 5 project to Angular 6.\n\n24 Apr 2018\n\n[Read article](https://www.techiediaries.com/angular-4-tutorial/)\n\n## Single Page Apps with Flask and Angular 4|5 Tutorial Series\n\nIn this tutorial series we'll be using Python, Flask, SQLAlchemy and Angular 5 to build a modern RESTful web application with an architecture that consists of a front-end application with Angular 5 and a back-end REST API using Flask.\n\n04 Apr 2018\n\n[Read article](https://www.techiediaries.com/flask-angular-tutorial/)\n\n## Building an Ionic 3/Angular 4|5 Application with a GraphQL API\n\nIn this tutorial we'll see how to build a CRUD Ionic 3 mobile application (or if you prefer an Angular 4+ web application) using the modern GraphQL-based API\n\n20 Jan 2018\n\n[Read article](https://www.techiediaries.com/ionic-graphql/)\n\n## 3+ Ways to Add Authentication to Ionic 3 (Angular 4|5) Applications\n\nIn this article we'll look at the available options for adding authentication to your Ionic 3 application\n\n20 Jan 2018\n\n[Read article](https://www.techiediaries.com/ionic-angular-auth/)\n\n## QuickTip: Django and AngularJS Conflicting Interpolation Symbols\n\nIn this quick-tip post we'll see how to change the conflicting symbols for template tags when using Django and AngularJS\n\n20 Jan 2018\n\n[Read article](https://www.techiediaries.com/angularjs-django-template-tags/)\n\n## Building Modern Web Apps with Python, Django Rest Framework and Angular 4|5\n\nIn this tutorial we are going to learn how to get started building modern web applications with Python, Django and Django Rest Framework as the back-end stack and the new Google Framework, Angular 2+, to build JavaScript client side applications, as the front-end technology. We'll see how to integrate both frameworks in the development and the production environments and how to use the Angular HTTP module to make API calls or Ajax requests to our REST API back-end.\n\n18 Dec 2017\n\n[Read article](https://www.techiediaries.com/django-angular-cli/)\n\n## Building Server Side Rendered Apps with the Angular Universal Starter\n\nHow to build server rendered apps with Angular Universal Starter\n\n28 Jul 2017\n\n[Read article](https://www.techiediaries.com/angular-universal-starter/)\n\n## How To Read QR Codes In Angular ?\n\nReading QR Codes in Angular 4+\n\n07 Jun 2017\n\n[Read article](https://www.techiediaries.com/read-qrcodes-angular/)\n\n## Create a QR Code Generator with Angular 4+\n\nHow To Generate QR Codes In Angular 4+ Applications\n\n06 Jun 2017\n\n[Read article](https://www.techiediaries.com/generate-qrcodes-angular/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechiediaries%2Fangular-cookbook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechiediaries%2Fangular-cookbook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechiediaries%2Fangular-cookbook/lists"}