Applying Project Level Vscode Settings with Angular

Applying Project Level Vscode Settings with Angular

When you work with a team, everyone has their own preferences like double-quotes vs. single-quotes, trailing semicolon or not. If you want to decide a common code format that automatically applied. There are several ways which also comes with angular 21, like prettier. But you need to run the command for that every time. It is a nice feature. But you can also format code on file save. For that you need to follow these two steps.

[Read More]

Ngrx Entity and Effects

Ngrx Entity and Effects

NGRX Entity gives you an efficient and quick way to deal with ngrx store related operations, such as read, write, update, delete. You can focus on productivity, rather than creating and modifeng complex state everytime. It can be very helpful when you are dealing with complex state and handling with http services at the same time.

What is ngrx ?

Ngrx is a state management library, that stores the state globally. Lets understand some of its components.

[Read More]

Angular Autocomlete With Ng Select

Angular Autocomlete With Ng Select

There are various packages available for implementing autocomplete in angular and we are going to use the simplest one (ng-select).

Let’s finish talking and need to start write code. Let’s install ng-select package from command line

npm install --save @ng-select/ng-select

[Read More]

Angular pagination with infinite scroll (using ngx-infite-scroll)

Angular pagination with infinite scroll (using ngx-infite-scroll)

Photo by Ajda ATZ on Unsplash

Sometimes we get a condition where you don’t want to display all the data at once. Initially we display some data, and when we scroll down ,we loads more data. This kind of behaviour you can see in youtube, instagram or facebook. You might even spend much time of your day on just scrolling down. So we are gonna learn how to do that.

[Read More]