TechDailyCFP · @techdailycfp
26 followers · 478 posts · Server techhub.social
TechDailyCFP · @techdailycfp
25 followers · 427 posts · Server techhub.social
Deborah Kurata · @deborahkurata
576 followers · 51 posts · Server techhub.social

Check out my latest video on error handling with Observables:

🧐Catch and Rethrow
🧐Catch and Continue
🧐Retry on Error
🧐RetryWhen
🧐Errors and Action Streams

youtu.be/L9kFTps_7Tk

#angular #RxJS #observable #errorhandling

Last updated 2 years ago

Deborah Kurata · @deborahkurata
573 followers · 50 posts · Server techhub.social

Looking for a better way to manage state in your Angular applications?

The new Angular signals are well suited to effectively manage the data we retain in our components and services.

Check out the video here:

youtu.be/04avEeicarQ

#angular #signals #angular16 #RxJS

Last updated 2 years ago

Deborah Kurata · @deborahkurata
570 followers · 49 posts · Server techhub.social

Angular Signal vs RxJS Behavior Subject. . . Fight!

Just kidding. 😆

In reality, there are use cases for both. In this video, we take a look at how to replace a synchronous BehaviorSubject with a signal.

youtu.be/a6XKMj-WRhM

#angular #RxJS #webdevelopment #signals

Last updated 2 years ago

Deborah Kurata · @deborahkurata
569 followers · 48 posts · Server techhub.social

Angular v16 RC 1 is out!

This release candidate includes some changes to RxJS/signals interop:
🚥 Renamed fromObservable/fromSignal
🚥 Changed how the fromObservable default works
🚥 Improved error handling

This video applies these changes in a sample app.

youtu.be/xQIOWkBe5wQ

#angular #RxJS #signals #angular16

Last updated 2 years ago

Woooow !!!, today was another step in my coding live. helped me to improve my code. Simply amazing !!

If helping/teaching me functional programming (Linq between others) everyday, now, is going to helping/teaching me to continuous improving/learning about other languages like and why not? Improve my current code.

#chaptgpt #RxJS #resharper #chatgpt #angular #typescript #csharp #ia #dotnet #coding #developments #developer

Last updated 2 years ago

beemdvp.xrd · @beemdvp
27 followers · 674 posts · Server techhub.social

Theres something about operators that make you think in a really composable manner and I like that. Reactive libs are actually really nice once you learn its concepts/mental models

#RxJS

Last updated 2 years ago

Deborah Kurata · @deborahkurata
563 followers · 46 posts · Server techhub.social

Wondering how these new Angular signals work with our existing RxJS?

In this video, we create signals from Observables and bind to those signals. And react to a signal in an Observable pipeline.

youtu.be/5SD995zKvbk

#angular #RxJS #angularsignals

Last updated 2 years ago

Langhard · @Langhard
28 followers · 26 posts · Server novaloop.social

@spierala the ecosystem is quite large. A lot of third party angular libraries make use of .

#angular #RxJS

Last updated 2 years ago

Deborah Kurata · @deborahkurata
504 followers · 29 posts · Server techhub.social

Just posted a new video:

- Why do we need an RxJS Subject?
- What is best practice for creating one?
- What's the diff between Subject and BehaviorSubject?
- How to emit a value into a Subject?

All in under 2 min 15 sec. 😀

youtu.be/rU35jd5s-LE

Let me know what you think!

#angular #RxJS #subject

Last updated 2 years ago

Deborah Kurata · @deborahkurata
499 followers · 28 posts · Server techhub.social

Higher-order mapping with RxJS:
- Maps a value (such as an id) to an Observable
- Automatically subscribes and unsubscribes from the inner Observable
- Flattens the result

More information here:

youtu.be/Ezos3zSgldU

#angular #RxJS #switchmap

Last updated 2 years ago

Deborah Kurata · @deborahkurata
496 followers · 27 posts · Server techhub.social

Use RxJS mapping to:
- Change an http response to a useable format
- Add properties to retrieved data
- Build a string title from retrieved data

And see the difference between first order and higher-order mapping.

youtu.be/c7z-rsKcvZw

#angular #RxJS #mapping

Last updated 2 years ago

alexrkoch · @alexrkoch
1 followers · 5 posts · Server hachyderm.io

Hey y'all, I'm Alex. I'm a software engineer very early in my career, working in the healthcare industry. I live in Durham NC in the US. I'm on here to learn and share knowledge about all things software development. Currently I work with Angular, NestJS, Camunda, and a bit on some Java SpringBoot projects as well.

#introduction #angular #nodejs #camunda #SpringBoot #java #RxJS

Last updated 2 years ago

Deborah Kurata · @deborahkurata
476 followers · 26 posts · Server techhub.social

We've all learned the procedural approach to getting data from an Observable. But using a *declarative* approach opens up many more options for manipulating the data and reacting to changes from an Observable.

youtu.be/0XPxUa8u-LY

#angular #RxJS #declarative

Last updated 2 years ago

Deborah Kurata · @deborahkurata
470 followers · 25 posts · Server techhub.social

switchMap vs concatMap vs mergeMap ... Oh My!

Examine what each of these are and when to use them here:

youtu.be/RSf7DlJXoGQ

#angular #RxJS

Last updated 2 years ago

Deborah Kurata · @deborahkurata
468 followers · 23 posts · Server techhub.social

A common scenario with RxJS is to issue an HTTP request for an array of data, then process each element of that array to get additional detail data.

One approach is to use mergeMap and forkJoin as shown here:

youtu.be/hSHwLcqQ4O0

#angular #RxJS #forkjoin

Last updated 2 years ago

Deborah Kurata · @deborahkurata
453 followers · 20 posts · Server techhub.social

What do you think of when you hear "reactive programming"?

Here is my take: youtu.be/e1_20ut4mwU

#angular #RxJS #reactive

Last updated 2 years ago

Deborah Kurata · @deborahkurata
440 followers · 18 posts · Server techhub.social

Another Angular Quick Take video:

"What is an Observable?"

youtu.be/xsOgPrbFckE

#angular #RxJS #observable

Last updated 2 years ago

Younes · @yjaaidi
44 followers · 9 posts · Server hachyderm.io

💥 friends! Your app might be leaking if you are using this:

destroyed$ = new Subject();

...takeUntil(destroyed$)

✅ we should use ReplaySubject(1) instead to not miss late subscribers

🚀 or just cut the clutter and use RxState

👉 Demo: stackblitz.com/edit/angular-au

#angular #javascript #RxJS

Last updated 2 years ago