Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.27 KB

README.md

File metadata and controls

51 lines (38 loc) · 1.27 KB

Angular User Quiz App

Table of contents

Overview

This Angular application showcases search, data fetching, pagination, and basic caching techniques. It fetches user data from external APIs and presents it in an interactive user interface.

Technologies Used

  • Angular
  • RxJS
  • Preline UI
  • LocalStorage (for simple caching)

Installation and Setup

  1. Clone the repository:

    git clone https://github.com/dew-dr0p/angular-quiz-assessment.git
  2. Install dependencies:

    cd angular-quiz-assessment
    npm install
  3. Run the Application

    ng serve

Features

  • Displays a paginated list of users fetched from an external API.
  • Implements a search bar to filter users by ID.
  • Navigates to individual user details pages.
  • Utilizes localStorage caching to optimize loading times.

Additional Notes

  • This project is a demonstration of core Angular concepts.
  • Future enhancements could include:
    • Implementing more robust state management (NgRx)
    • Adding user profile editing capabilities