-
Notifications
You must be signed in to change notification settings - Fork 26.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: RxJS overview #60828
base: main
Are you sure you want to change the base?
docs: RxJS overview #60828
Conversation
22efc22
to
735554b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.
735554b
to
4e2e8b4
Compare
Deployed adev-preview for 5de1f67 to: https://ng-dev-previews-fw--pr-angular-angular-60828-adev-prev-1u9al39w.web.app Note: As new commits are pushed to this pull request, this link is updated after the preview is rebuilt. |
4e2e8b4
to
5de1f67
Compare
5de1f67
to
9186b71
Compare
|
||
## Introduction to RxJS | ||
|
||
[RxJS](https://rxjs.dev/) is a reactive programming library that focuses on handling streams and event based programming. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[RxJS](https://rxjs.dev/) is a reactive programming library that focuses on handling streams and event based programming. | |
[RxJS](https://rxjs.dev/) is a library for reactive programming that simplifies working with streams and event-driven programming. |
|
||
[RxJS](https://rxjs.dev/) is a reactive programming library that focuses on handling streams and event based programming. | ||
|
||
RxJS provides an implementation of the [`Observable`](https://rxjs.dev/guide/observable) type, which is needed until the type becomes part of the language and until browsers support it. The library also provides utility functions for creating and working with observables. These utility functions can be used for: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RxJS provides an implementation of the [`Observable`](https://rxjs.dev/guide/observable) type, which is needed until the type becomes part of the language and until browsers support it. The library also provides utility functions for creating and working with observables. These utility functions can be used for: | |
It provides an implementation of the [Observable](https://rxjs.dev/guide/observable) type, serving as a foundational tool until it becomes a standard language feature supported by browsers. RxJS also includes utility functions to create and manipulate observables, enabling: |
|
||
RxJS provides an implementation of the [`Observable`](https://rxjs.dev/guide/observable) type, which is needed until the type becomes part of the language and until browsers support it. The library also provides utility functions for creating and working with observables. These utility functions can be used for: | ||
|
||
- Converting existing code for async operations into observables |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Converting existing code for async operations into observables | |
- Converting asynchronous code into observables |
RxJS provides an implementation of the [`Observable`](https://rxjs.dev/guide/observable) type, which is needed until the type becomes part of the language and until browsers support it. The library also provides utility functions for creating and working with observables. These utility functions can be used for: | ||
|
||
- Converting existing code for async operations into observables | ||
- Iterating through the values in a stream |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Iterating through the values in a stream | |
- Iterating over stream values |
- Converting existing code for async operations into observables | ||
- Iterating through the values in a stream | ||
- Mapping values to different types | ||
- Filtering streams |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Filtering streams | |
- Filtering data streams |
|
||
- Converting existing code for async operations into observables | ||
- Iterating through the values in a stream | ||
- Mapping values to different types |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Mapping values to different types | |
- Transforming values into new types |
No description provided.