Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/reconfortdev/rxjs-basics

Observable RXJS Basics
https://github.com/reconfortdev/rxjs-basics

Last synced: 12 days ago
JSON representation

Observable RXJS Basics

Awesome Lists containing this project

README

        

# RxJS Basics

This project demonstrates the basic usage of RxJS operators and includes examples of debounced search, data combination, error handling, and loading states in an Angular application.

## Labs 1

### 1. Using `of` Operator
- **Description**: Creates an observable that emits a sequence of values.
- **Implementation**: See `exampleOf()` in `app.component.ts`.

### 2. Working with `from` Operator
- **Description**: Creates an observable from an array or iterable object.
- **Implementation**: See `exampleFrom()` in `app.component.ts`.

### 3. Using `interval` Operator
- **Description**: Emits values at regular intervals.
- **Implementation**: See `exampleInterval()` in `app.component.ts`.

### 4. Combining Observables with `concat`
- **Description**: Sequentially combines multiple observables.
- **Implementation**: See `exampleCombine()` in `app.component.ts`.

### 5. Error Handling in Observables
- **Description**: Demonstrates error handling using the `catchError` operator.
- **Implementation**: See `exampleErrorHandling()` in `app.component.ts`.