Skip to content
All essays
WebFebruary 27, 202510 min

Angular 17+ Guide: Signals, Standalone, and RxJS

Master Angular with Signals, standalone components, and modern RxJS patterns.

Ü
Ümit Uz
Mobile & Full Stack Developer

Signals

typescript
import { signal, computed } from '@angular/core';

@Component({
  standalone: true,
})
export class AppComponent {
  count = signal(0);
  doubleCount = computed(() => this.count() * 2);
}

Dependency Injection

typescript
@Injectable({ providedIn: 'root' })
export class DataService {
  constructor(private http: HttpClient) {}
}

The full-framework approach!

Related essays

Next essay
Technical Writing: Documentation Best Practices