Bacancy Bacancy
      • About Company
      • Resources

      About Company

      About Us Leadership Team Customer Reviews Awards & Recognition
      Infrastructure Our Locations Partnership

      Resources

      Press Room Blog Insights
      We are great place to work certified™

      Building and Sustaining High-Trust, High-Performance Culture

      Get Quote
    • Engagement Models

      Hiring Software Developers becomes easier with just a few clicks.

      Software Development Outsourcing

      End-to-end delivery of custom solutions aligned to your roadmap.

      Staff Augmentation

      Scale your in-house team with pre-vetted specialists on demand.

      Dedicated Teams

      Get dedicated engineers who work exclusively on your project.

      • Enterprise Services
      • IT Services
      • Data Analytics
      • Cloud Services
      • AI & ML
      • Platforms

      Enterprise Services

      Digital Transformation Business Process Automation Digital Product Engineering Enterprise App Development Custom Software Development

      IT Services

      Legacy App Modernization DevOps & SRE Full Stack Development AI Testing & QA Automation

      Data Analytics

      Data Visualization & Reporting Data Engineering & Pipelines Data Science & Predictive Analytics Business Intelligence

      Cloud Services

      Cloud Strategy & Consulting Cloud Migration & Modernization Multi Cloud Management

      AI & ML

      AI Development Agentic AI Generative AI Computer Vision Machine Learning & MLOps

      Platforms

      Salesforce SAP ServiceNow Microsoft Dynamics Snowflake
      High-quality, Cost-effective IT Outsourcing

      Schedule a free discovery session to explore your needs and find tailored solutions with no obligation.

      explore all services
    • Industries
      Healthcare Fintech Real Estate
      Logistics Education Retail & Ecommerce
      Let's Grow Together! Get Quote
      • Front End
      • Backend
      • Mobile
      • Databases
      • DevOps & Infra
      • AI & Data Stack
      • Vibe Coding

      Front End

      React.js Next.js Angular Vue.js TypeScript
      Your Very Own UI/UX Architects

      Experience smooth navigation and user-friendly designs with our front-end expertise.

      Hire Frontend Developer

      Backend

      Node.js Python Java Spring Boot Laravel .NET C# Golang FastAPI
      Server Solutions To Change Power Dynamics

      Transform your data into digital experiences with optimized coding standards.

      Hire Backend Developer

      Mobile

      iOS Android Flutter React Native
      Innovating Mobile-Friendly App Solutions

      Create dynamic mobile apps that make your brand stand out from the crowd.

      Hire Mobile App Developer

      Databases

      PostgreSQL MongoDB MySQL Redis Supabase
      Dedicated Talent With Skilled Approach

      Bring your digital visions to life with a hired resource at your convenience.

      Hire Dedicated Developer

      DevOps & Infra

      AWS Azure Google Cloud Docker Kubernetes Terraform
      Redefining Scalable Digital Infrastructures

      Make your data accessible worldwide at will, and leave the stress behind.

      Get Quote

      AI & Data Stack

      OpenAI LangChain LlamaIndex Apache Spark Airflow Tableau PowerBI Databricks
      Guiding Decisions With Data-Driven Insights

      Transition from your gut calls to actionable insights with our rich Data Science expertise.

      Get Quote

      Vibe Coding

      Base44 Claude Code Cursor Lovable Github Copilot
      Your AI-Native Development Team

      Skip the boilerplate. Our vibe coding experts use AI-first tools to go from prompt to product, fast.

      Hire Vibe Coding Developer
  • Case Studies
  • Contact Us
Find a Developer book a 30 min call
      • About Us
      • Leadership Team
      • Customer Reviews
      • Awards & Recognition
      • Infrastructure
      • Our Locations
      • Partnership
      • Press Room
      • Blog
      • Insights
      • Digital Transformation
      • Business Process Automation
      • Digital Product Engineering
      • Enterprise App Development
      • Custom Software Development
      • Legacy App Modernization
      • DevOps & SRE
      • Full Stack Development
      • AI Testing & QA Automation
      • Data Visualization & Reporting
      • Data Engineering & Pipelines
      • Data Science & Predictive Analytics
      • Business Intelligence
      • Cloud Strategy & Consulting
      • Cloud Migration & Modernization
      • Multi Cloud Management
      • AI Development
      • Agentic AI
      • Generative AI
      • Computer Vision
      • Machine Learning & MLOps
      • Salesforce
      • SAP
      • ServiceNow
      • Microsoft Dynamics
      • Snowflake
    • Healthcare
    • Fintech
    • Real Estate
    • Logistics
    • Education
    • Retail & Ecommerce
      • React.js
      • Next.js
      • Angular
      • Vue.js
      • TypeScript
      • Hire Frontend Developer
      • Node.js
      • Python
      • Java
      • Spring Boot
      • Laravel
      • .NET
      • C#
      • Golang
      • FastAPI
      • Hire Backend Developer
      • iOS
      • Android
      • Flutter
      • React Native
      • Hire Mobile App Developer
      • PostgreSQL
      • MongoDB
      • MySQL
      • Redis
      • Supabase
      • Hire Dedicated Developer
      • AWS
      • Azure
      • Google Cloud
      • Docker
      • Kubernetes
      • Terraform
      • Get Quote
      • OpenAI
      • LangChain
      • LlamaIndex
      • Apache Spark
      • Airflow
      • Tableau
      • PowerBI
      • Databricks
      • Get Quote
      • Base44
      • Claude Code
      • Cursor
      • Lovable
      • Github Copilot
      • Hire Vibe Coding Developer
  • Case Studies
  • Contact Us
  • Find a Developer
  • book a 30 min call
Angular + Redux + RxJs = NGRX

How to build an Angular application using NgRx (Angular 8 + Redux)- Part 2

Aishwary Rawat
Aishwary Rawat Director of Engineering
Last Updated on March 10, 2025 | Written By: Aishwary Rawat

In first part of the NgRx tutorial, we have covered the core concepts and detailed descriptions about what is NgRx; it’s a workflow and its need.

In the second installment, we will learn how to use actions, reducers, selectors, and effects in our application. So you will get an idea of how actually they are interrelated to each other.

So let’s get started.

In the following example, I will display the list(get) of users and add(post) a user using NgRx concepts. Also, I am going to change the state of the loader flag when HTTP request is called.

Before getting into the code, let’s see what we will be making.

Here is the Demo

GitHub Repository

ANGULAR CLI VERSION : “@angular/cli”: “~8.3.20”

Note: Add the Redux dev tools extension in your browser to check the store and state changes.

Install @angular/cli using the following command

npm i -g @angular/cli

Let’s create a new angular application.

ng new Ngrx-demo

ngrx
ngrx

After successfully creating the application, we will be adding the dependencies for @ngrx in our app.

npm install @ngrx/{store,effects,store-devtools}

And to make our application look better, we will be using ng-bootstrap and bootstrap package. It is not necessary, as you can add your own CSS framework or custom CSS.

npm install --save @ng-bootstrap/ng-bootstrap

Also, add the bootstrap package.

npm i bootstrap 

After successfully adding it, update your angular.json styles array.

 "styles": [
             "src/styles.scss",
             "node_modules/bootstrap/dist/css/bootstrap.min.css"
           ],

Now, let’s add these modules in our root module. i.e App Module

Are you looking to develop an Angular application using NgRx? Hire Angular Developer from us to build a reliable and robust Angular application with Angular 8 + Redux.

app.module.ts

StoreModule contains the state variable that holds our current state value. Here, users are our state variables. Generally, state variables are defined in selector.ts

EffectsModule loads the effects file when any action is dispatched.

NOTE: Here, I am using the below structure. It may vary according to your project structure.

EffectsModule

NOTE: I will be adding code in respective files. Kindly replace it with yours.

Now, let’s create a store folder to manage our NgRx flow in one place.

NgRx flow

actions.ts

In an action file, we take the enum type variable and assigns our actions to it. We need to create a class for each action that implements the Action interface.

In GetUserLoad = “[User] Get User,” there is no compulsion to write the string part(i.e. “[User] Get User”) But it is good practice to mention as it will help you to see which action leads to state changes in redux devtool extension.

It is a must to export the actions that I have done in the last line.

reducer.ts

In reducer, a type of action is being checked, and then our state gets updated.

effects.ts

Here, which effect gets called will be decided based on the action that is matched in ofType.

As in getUsers$, GetUserLoad action is dispatched from the get-user component.

We can also dispatch other actions here. Like, after a successful API call, it dispatches GetUserSuccess action and passing ‘user’ payload to it. Likewise, on failure, GetUserFail action gets dispatched with an error.

selector.ts

Selector helps in fetching and manipulating the data present in our current state. So here I am creating two const, first for getting all users and another for getting the first ten users.

index.ts

After completing the store folder, we will now add components, service, and interface. Let’s go!

ng g c get-user
ng g c post-user 

After successfully creating components, let’s add some code to it.

get-user.component.html

get.user.component.ts

post-user.component.html

post-user.component.ts

Now I am going to add a service file. Use the following command.

ng g service _services/users

This will create a users.service.ts file in a folder named _services.

 users.service.ts

Note: I am using fake rest APIs from https://jsonplaceholder.typicode.com/.

You can delete the users.spec.ts file as we are not going to write any test cases here.

users.service.ts

Now let’s add the interface file. Use the command below.

ng g interface _interfaces/users

This will create a users.ts file in a folder named _interfaces.

interfaces

user.ts

Now finally calling get-user and post-user components in app.component.html using their selector.

app.component.html

In app.component.html, delete all the starter code and add this code.

Finally, our coding part is done. Let’s run the application using the serve command.

ng s --port 4300

After compiling successfully, you will see this.

ngrx demo

That’s all!

I hope you enjoyed reading the blog post. Please, let me know your thoughts in the comment section below

Thank you and Happy Coding?


Expand Your Digital Horizons With Us.

Start a new project or take an existing one to the next level. Get in touch to start small, scale-up, and go Agile.


Or
E-mail us : solutions@bacancy.com

Your Success Is Guaranteed !

Related Articles

Dipal Bhavsar

November 21, 2025

AngularJS

Angular 21: Latest Features, Updates & Advancements

By : Dipal Bhavsar

Read More
Dipal Bhavsar

November 3, 2025

AngularJS

7 Easiest Ways to Use AI in Angular

By : Dipal Bhavsar

Read More
Dipal Bhavsar

May 29, 2025

AngularJS

Angular 20: Your Guide to the Latest Features and Improvements

By : Dipal Bhavsar

Angular 20 just launched, and it’s packed with exciting updates that make your app development faster, easier, and more modern....

Read More

Offices and Development Centers

Bacancy Ahmedabad Ahmedabad

15-16, Times Corporate Park, Thaltej, Ahmedabad, 380059

Bacancy Gandhinagar Gandhinagar

422-A, 4th Floor, Pragya Tower Road 11, Block 15, Zone 1, SEZ-PA Gandhinagar, 382355

Bacancy Hyderabad Hyderabad

Awfis, Level 1, N Heights, Plot No 38, Phase 2, Hitech City Hyderabad, 500081

Bacancy Mumbai Mumbai

18th Floor, Cyberone, opp. CIDCO Exhibition Centre, Sector 30, Vashi, Navi Mumbai, 400703

Bacancy Pune Pune

2nd FloorMarisoft-1, Marigold IT Park, Pune - 411014

Bacancy Bengaluru Bengaluru

Raheja Towers, 26/27, Mahatma Gandhi Rd, East Wing, Craig Park Layout, Ashok Nagar, Bengaluru, 560001

Global Presence

Bacancy New Jersey New Jersey

33 South Wood Ave, Suite 600, Iselin NJ 08830

Bacancy California California

535 Mission St 14th floor, San Francisco, CA 94105

Bacancy Massachusetts Massachusetts

501 Boylston St, Boston, MA 02116

Bacancy Florida Florida

4995 NW, 72nd Avenue, Suite 307, Miami, FL, 33166

Bacancy London London

90 York Wy, London N1 9AG, United Kingdom

Bacancy Ontario Ontario

71 Dawes Road, Brampton, On L6X 5N9, Toronto

Bacancy Australia Australia

351A Hampstead Rd, Northfield SA 5085

Bacancy UAE UAE

One Central 8th and 9th Floor - Trade Centre - Trade Centre 2 - Dubai - United Arab Emirates

Bacancy Sweden Sweden

Junkergatan 4, 126 53 Hagersten

Get in Touch

Great Place to Work

Get in Touch

cal-icon

Looking for expert advice?

Schedule a Expert Call


  • Brochure
  • Quality Assurance
  • Resources
  • Tutorials
  • Customer Reviews
  • Privacy Policy
  • FAQs
  • Press Room
  • Contact Us
  • Sitemap
  • Employee

bacancy google review 4.6
bacancy google review
bacancy clutch review 4.8
bacancy clutch review
bacancy goodfirms review 4.8
bacancy goodfirms review
iso
  • Bacancy Behance
  • Bacancy Pinterest

Copyright © 2026 Bacancy. All Rights Reserved. An ISO 27001:2013. Certified Company