cichy380 / example-ngsw-config

Example of usage Angular Service Worker

Home Page:https://cichy380.github.io/example-ngsw-config/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Example of Angular Service worker configuration

This project was generated with Angular CLI version 11.0.5.

Service worker

Service worker is a script that runs in the web browser and manages caching for an application. Service workers function as a network proxy. They intercept all outgoing HTTP requests made by the application and can choose how to respond to them.

To set up the Angular service worker in this project, was use the CLI command ng add @angular/pwa.

Source: https://angular.io/api/service-worker and https://angular.io/guide/service-worker-intro

Data requests

The application calls to three API endpoints from the Random Data Generator:

Configuration

The ngsw-config.json configuration file specifies eg. which data URLs the Angular service worker should cache and how it should update the data.

dataGroups

The configuration file uses the JSON format.

{
  "dataGroups": [
    {
      "name": "api-freshness",
      "urls": [
        "https://random-data-api.com/api/vehicle/random_vehicle"
      ],
      "cacheConfig": {
        "strategy": "freshness",
        "maxSize": 100,
        "maxAge": "5m",
        "timeout": "1s"
      }
    },
    {
      "name": "api-performance",
      "urls": [
        "https://random-data-api.com/api/food/random_food"
      ],
      "cacheConfig": {
        "strategy": "performance",
        "maxSize": 100,
        "maxAge": "5m"
      }
    }
  ]
}

About

Example of usage Angular Service Worker

https://cichy380.github.io/example-ngsw-config/


Languages

Language:HTML 38.5%Language:TypeScript 33.5%Language:CSS 17.0%Language:JavaScript 11.0%