A single-page application built with Angular 21 for exploring GitHub profiles and repository activity.
Developed as a hands-on learning project to explore modern Angular architecture: standalone components, signal-based reactivity, RxJS pipelines, and lazy-loaded routing — all without third-party UI libraries.
- Angular 21 with zoneless change detection
- Signals for local state management (
signal,computed,toSignal) - RxJS for async data flow:
debounceTime,switchMap,distinctUntilChanged,forkJoin - Lazy-loaded routing with
loadComponent - GitHub REST API — no authentication required
- Pure CSS with component-scoped styles
This project was generated using Angular CLI version 21.2.6.
To start a local development server, run:
ng serveOnce the server is running, open your browser and navigate to http://localhost:4200/. The application will automatically reload whenever you modify any of the source files.
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
ng generate component component-nameor:
ng g c component-nameFor a complete list of available schematics (such as components, directives, or pipes), run:
ng generate --helpTo build the project run:
ng buildThis will compile your project and store the build artifacts in the dist/ directory. By default, the production build optimizes your application for performance and speed.
For more information on using the Angular CLI, including detailed command references, visit the Angular CLI Overview and Command Reference page.