Outline

AsyncPipe Overview

This video has been an explanation of AsyncPipe in Angular. I have been seeing AsyncPipe used in production code more and more. So this is definitely something worth learning about.

The AsyncPipe is used to handle asynchronous data. It allows us to implicitly subscribe to an Observable inside of our HTML. The biggest benefit of AsyncPipe is that it will automatically unsubscribe from whatever Observable it was subscribed to when our component is destroyed. No more need to worry about subscriptions!

For more information on AsyncPipe head over to the Angular Docs.

 

I finished! On to the next chapter