Angular Performance: Precaching with the Service Worker
Cache your app with Angular's integrated service worker package
1 min read
1 min read
Note: this article and attached Egghead video lesson are based on the articles on web.dev/angular by Minko Gechev and Stephen Fluin. Full credit goes to them 👍
Don’t miss the other videos by subscribing to my newsletter.
To further speed up our app and to provide a more pleasant experience in flaky network conditions, we may want to use a service worker that allows us to apply precaching mechanisms. Luckily the Angular team already offers a service worker module that is well integrated with the framework. Let’s have a look at how to apply that to our application.
Wanna read the original web.dev article? Check it out here!.