docs: add important service worker note (#63364)

This adds an important note about the service worker to indicate we are not accepting new features.

PR Close #63364
This commit is contained in:
Jessica Janiuk 2025-08-25 13:12:00 +02:00 committed by Andrew Kushnir
parent 269f344d45
commit 650ad1f7fb
2 changed files with 4 additions and 0 deletions

View file

@ -1,5 +1,7 @@
# Angular service worker overview
IMPORTANT: The Angular Service Worker is a basic caching utility for simple offline support with a limited featureset. We will not be accepting any new features other than security fixes. For more advanced caching and offline capabilities, we recommend exploring native browser APIs directly.
Service workers augment the traditional web deployment model and empower applications to deliver a user experience with the reliability and performance on par with code that is written to run on your operating system and hardware.
Adding a service worker to an Angular application is one of the steps for turning an application into a [Progressive Web App](https://web.dev/progressive-web-apps/) (also known as a PWA).

View file

@ -1,3 +1,5 @@
IMPORTANT: The Angular Service Worker is a basic caching utility for simple offline support with a limited featureset. We will not be accepting any new features other than security fixes. For more advanced caching and offline capabilities, we recommend exploring native browser APIs directly.
Implements a service worker for Angular apps.
Adding a service worker to an Angular app is one of the steps for turning it into a Progressive Web App (also known as a PWA).