14 Jul, 202311 min read
Go offline with Service Worker
A JavaScript asset that acts as a proxy between browser and server. If we’ve any service worker installed, all requests go through the service worker before going to the web. It sits in the browser between the app and the rest of the internet. Service workers run on their own thread and give access to the `Cache` API which could be used to implement precaching or runtime caching based on the requirements.
- Service Worker
- JavaScript
- Web Development