22 Matching Annotations
  1. Sep 2024
  2. Dec 2023
  3. Jun 2023
  4. Aug 2022
  5. Jul 2022
  6. Apr 2022
  7. Mar 2022
  8. Jan 2022
  9. May 2021
    1. Service workers act as proxy servers that handle network requests inside your app. This makes it possible to make your app work offline, but even if you don't need offline support (or can't realistically implement it because of the type of app you're building), it's often worth using service workers to speed up navigation by precaching your built JS and CSS.
  10. Mar 2021
  11. Jan 2021
    1. If a Service Worker fails, it’s possible to break an entire website in ways that we can’t fix on the server side (or at least, not right away). Imagine this: your site appears to be down, but refreshing the page won’t help, because the browser isn’t even talking to your server; it’s just talking to your broken Service Worker.
  12. Nov 2020
    1. Service Workers are very powerful. They allow offline functionality, push notifications, content caching, and more. They have a short lifetime, and the way they work is by waking up when they get an event (e.g., network requests, push notifications, connectivity changes) and then they start running only as long as the process needs it.
  13. Oct 2018