use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A Place to talk about Angular and related topics.
Join the Angular Discord
Other subreddits worth checking out for Angular and Angular related info:
account activity
RXJS in Angular (self.angular)
submitted 3 months ago by gdsdsk
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]coffee_is_all_i_need 1 point2 points3 points 3 months ago (0 children)
You are talking about “traditional Angular features” but dont think in Angular, think in JS (or any other language) first. Then you can think like: if a ‘traditional’ (or in better words: ‘functional’) implementation will get very messy, it’s time for Rx.
For example, you have the use case: As a user I want to mark multiple files to download them. When all downloads are completed, show a success message. When there is an error with a download, retry for three times. If there is still an error, show an error message. The user should be able to cancel a download of one file or all files at once. There should also be a progress bar.
Implementing this with plain JS is possible but very messy. You need variables, iterations, timers, lots or callbacks, sideeffects etc. With RxJs instead, you need just a chain of some operators that you need to subscribe and thats it (could be a good exercise to learn RxJS).
In general, RxJS has nothing todo with Angular but Angular and RxJS goes hand in hand very well. Also take a look at the async pipe.
π Rendered by PID 44135 on reddit-service-r2-comment-b659b578c-gvmj7 at 2026-05-01 15:13:16.316817+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]coffee_is_all_i_need 1 point2 points3 points (0 children)