angular-http

Installation
SKILL.md

Angular HTTP & Data Fetching

Fetch data in Angular using signal-based resource(), httpResource(), and the traditional HttpClient.

httpResource() - Signal-Based HTTP

httpResource() wraps HttpClient with signal-based state management:

import { Component, signal } from '@angular/core';
import { httpResource } from '@angular/common/http';

interface User {
  id: number;
  name: string;
  email: string;
}

@Component({
Related skills

More from alexander-kastil/agentic-sw-engineering

Installs
1
GitHub Stars
3
First Seen
Mar 11, 2026