Posts for Angular

Angular is a TypeScript-based open-source web application framework led by the Angular Team at Google and by a community of individuals and corporations
Deven
Deven wrote

Firebase Authentication In Angular using AngularFire

In this tutorial, we are going Learn how to handle Firebase Authentication In Angular using Google’s Cloud Firestore and Angularfire. Most of the applications we build require some kind of Authentication and the simplest and fastest way to get started with that is by using the Firebase Firestore. Firestore is a flexible, scalable database for […]

March 27, 2021 in Angular & Tutorials

Server-side pagination with ngx-pagination in Angular

Server-side pagination is returning a subset of data requested by a client if you don’t want to display all data at once. The server takes a certain parameter from the client to get relevant information/records. In this article, I will explain how to do server-side pagination in Angular apps using ngx-pagination. Prerequisites for this tutorial […]

December 18, 2020 in Angular
Deven
Deven wrote

Building a Trello Board clone with Angular 10

In this article, We will build a Trello Board clone with Angular 10. Trello is a web-based Kanban-style list-making application and workflow visualization tool that enables you to optimize the flow of your work. A basic Kanban board has a three-step workflow: To Do, In Progress, and Done. We represent every work item as a […]

July 31, 2020 in Angular

Consuming WordPress Rest API with Angular

In this article, we will be looking at how to consume WordPress Rest Api With Angular. For the purpose of this tutorial we will be using MaterialPro Angular 8 Lite Template. Below is what we need to know before we proceed: Node.js installed in our system Angular CLI installed in our system A text editor […]

April 30, 2020 in Angular & Tutorials

Using Promises to Make HTTP Requests in Angular

Promises in ECMAScript are very much identical to the promises we make in our daily life. We will be looking out how Angular handle promises. Before Getting Started with Typescript promise let’s understand JavaScript Promise: JavaScript Promise A promise is an object that may produce a single value some time in the future: either a […]

April 16, 2020 in Angular

Setting Up Angular Authentication Using JWT

In this article, we will be building an authentication system in Angular using Expressjs, MongoDB, and JSON web token(JWT) for authentication.We will start by creating a simple REST API with Expressjs and MongoDB that will enable a user to signup and login with their details. Learning prerequisites Basic familiarity with Javascript. Basic Knowledge of Angular. […]

April 9, 2020 in Angular & Node & Tutorials

Building an Image Gallery with Angular

Creating a good looking Image Gallery with Angular is an awesome project to work on because it covers some basic understanding of what front end development is and what front end developers do. So in this project, we will be looking out on how we can use Unsplash api to build a beautify Image Gallery […]

April 6, 2020 in Angular

Getting started with Angular Reactive Form Validation

Handling user input with forms is the cornerstone of many common applications. Applications use forms to enable users to log in, to update a profile, to enter sensitive information, and to perform many other data-entry tasks. We will be looking at how Angular handles form Validation in Reactive Form. Angular provides two different approaches to […]

March 27, 2020 in Angular
Deven
Deven wrote

Server-Side Rendering in Angular

The technology that allows us to run our Angular applications on the server is described in the Angular docs as Angular Universal.  Angular Universal generates static application pages on the server through a process called server-side rendering (SSR).  It can generate and serve those pages in response to requests from browsers. It can also pre-generate pages as HTML files that you serve later. A […]

March 12, 2020 in Angular
Deven
Deven wrote

Build a server monitoring app using Node & Angular

In this tutorial, we will build a Real-time server monitoring app using Node and Angular that will show the free memory available on our server. Take a look at the app we are going to build:  we will be using following tech stacks Vagrant Node.js Angular chart.js  To create our development server we will be […]

December 17, 2019 in Angular & Node & Tutorials
Deven
Deven wrote

Create a Photo Gallery with Angular

In this angular tutorial, we are going to create a photo gallery with Angular and Cloudinary. Cloudinary is a service that allows you to seamlessly manage your website’s images in the cloud – image upload, cloud storage, image manipulation, image API and fast CDN. We will be using Angular IDE by CodeMix, so if you […]

November 23, 2019 in Angular
Deven
Deven wrote

Error Handling in Angular Applications

Error handling in Angular or  software development is as important having a working application. In order to have a complete and robust application, errors and exceptions have to be properly handled. Handling errors is a way of telling your users “hey dude! Calm down, here is the problem, and here is the way out yeah? In […]

November 18, 2019 in Angular & Tutorials
Deven
Deven wrote

Create a cryptocurrency app with Angular

In this tutorial, we are going to create a CryptoCurrency Price Update app using Angular 9. You will learn about Angular 9 application development. You will also learn how to use the Subject class from RxJS, a ReactiveX library for JavaScript. Let’s get started By creating Angular 9 project Install the Angular CLI To install the CLI […]

October 5, 2019 in Angular & Tutorials