Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
43 views

I created a small Angular client/Node Express server and in Chrome tools, simulating a 3G to slow down so I can see when page renders, we prefetch in install with Angular service worker. After the ...
Dean Hiller's user avatar
  • 20.4k
0 votes
0 answers
31 views

I have made an angular PWA and tried implementing a Network first, then Cache strategy since I want to be support offline mode for some api resources. I have used Google Chrome to simulate no internet ...
Dusto's user avatar
  • 65
1 vote
1 answer
105 views

I have an Angular application with @angular/pwa here is the ngsw-config.json { "$schema": "../../node_modules/@angular/service-worker/config/schema.json", "index": &...
Robert's user avatar
  • 2,910
0 votes
1 answer
122 views

i am using angular to create a SPA after every deploy i have to hard refresh the page to get the latest content I want to show a popup to user that new version is available you can refresh the browser ...
Abhishek's user avatar
0 votes
1 answer
63 views

I have installed ngx-indexed-DB to make the app work when offline after installing ng service worker but the problem is after making the indexed DB work the ng service worker is not registering. my ...
Gowri Shankar's user avatar
1 vote
0 answers
246 views

I'm trying to use a service worker to deliver prompt updates to users actively using the site. Followed the simple steps laid out in: https://angular.io/guide/service-worker-getting-started but I'm ...
JWrightII's user avatar
  • 1,114
0 votes
1 answer
90 views

Using Angular V14.2. Getting the below error in the console window. In the Application tab -> service workers menu the status is not getting activated. App.module.ts file
Karthikeyan Vellingiri's user avatar
0 votes
1 answer
742 views

I downloaded example from angular.io and followed the tour: https://angular.io/guide/service-worker-getting-started#cli-command ng add @angular/pwa ng build I faced this error: Error: Schema ...
Toof_LD's user avatar
  • 72
1 vote
0 answers
232 views

Am new to angular service workers, and have the following needs Want to have a separate thread than the one in the app taking care of purging every n minutes an indexedDb containing stuff, and notify ...
Pipo's user avatar
  • 5,183
1 vote
0 answers
492 views

I had installed service worker by this command @angular/pwa and its also registered successfully but on going offline mode it gives no internet connection the data is not being cached and loaded when ...
Devesh Parmar's user avatar
0 votes
1 answer
515 views

Angular app with service worker. CSP headers were updated to add a new frame-src. Safari picked up the header change fine. Chrome is blocking the iframe content, and the details for the block in the ...
Andrew's user avatar
  • 169
1 vote
1 answer
343 views

Service Worker is broken since I started injecting nonce from nginx in index.html as in <app-root ngCspNonce="$requestId"></app-root> following 1) from https://angular.io/guide/...
bhantol's user avatar
  • 9,636
0 votes
1 answer
424 views

For a single SPA Angular application, I want to use service workers ; but it conflicts with my CSP security rules... main.ts:5 This document requires 'TrustedScriptURL' assignment. Service worker ...
Doubidou's user avatar
  • 1,821
1 vote
1 answer
285 views

My app doesn't work when offline, because the angular serviceworker doesn't cache my index.html (it does cache my js, css, manifest and ico files). This only happens as long as my outputPath is within ...
JonasK's user avatar
  • 228
2 votes
1 answer
380 views

The App I'm building a PWA as a frontend for OpenAI's Whisper, using this API. The goal is to be able to share WhatsApp voice messages directly to the PWA to transcribe them. I am using Angular 16.2.2 ...
Paul R.'s user avatar
  • 21
1 vote
1 answer
251 views

I Added PWA package to my angular application. Angular CLI version is 15.2.9 and serviceworker version is also 15.2.9. I am facing an issue with the service worker. The service worker is registered on ...
Hemanth Reddy's user avatar
1 vote
1 answer
2k views

I'm trying to set up Service Workers in my Angular project. From the CLI inside my project directory I ran this: ng add @angular/pwa --project chatng It returned "Packages successfully installed&...
robert00's user avatar
1 vote
0 answers
2k views

I have started to implement service worker to my application. It is registered properly , but when I refresh the page it is giving net::ERR_ABORTED 504 (Gateway Timeout) error. But when I tick the ...
Ashwani Tandon's user avatar
0 votes
0 answers
107 views

Steps to reproduce the problem: 1.Application Which using indexed DB and Service worker Upload few images. Keep the browser open and use the application next day then repeat the same steps. Problem ...
Palani Kumar's user avatar
0 votes
0 answers
893 views

why my every request is being cached when even did't mentioned anything about whose api address to get cached, It seems like the ngsw-worker.js is not following the ngsw.json configs image 1 => ...
M Fahad's user avatar
  • 35
0 votes
0 answers
293 views

I have implemented Firebase push notifications in Angular 11 successfully. Initially, I integrated everything and experienced no issues. However, I encountered a requirement where I needed to have a ...
Tushar Shekokar's user avatar
0 votes
1 answer
600 views

We have an Angular app that has been in production for about a year and everything is working as expected. This week we deployed support for PWA in the app and for the most part it is working as ...
user1011627's user avatar
  • 1,829
0 votes
1 answer
111 views

I need to mdify the ngsw-worker.js file in angular14, but I am wondering is it possible or not!? and how can I rename the ngsw-worker.js to like ngsw.js? this file is located in my app node-module
Hesam Akbari's user avatar
  • 1,171
2 votes
2 answers
1k views

Context Angular PWA. Before explaining the error, I have to specify : We read the Angular service worker documentation We read this post, specially the validated answer as it looks like our situation ...
Adrii's user avatar
  • 1,770
1 vote
0 answers
273 views

I want to implement a version check/update on my angular app. Read the doc and so on, and I really don't get the thing of asking the user to reload the application. I don't remember any application ...
MaxM's user avatar
  • 107
3 votes
0 answers
823 views

I have implemented everything regarding Push Notifications on my Angular PWA (according to Angular Service Worker Notifications) and even got the notifications to be shown by the browser, however, ...
Gabriel Messas's user avatar
0 votes
0 answers
351 views

I have implemented the push notification using Angular v15 PWA service worker and .Net v7 but push notification is not working in other devices example: mobile except pc how to implement push ...
RowdyCodeU's user avatar
0 votes
0 answers
173 views

Service Worker in Angular send error in console about it not registered. I have a stackblitz code. In console logged errors. I have no ideas how to fix it.
forest smoker's user avatar
0 votes
1 answer
907 views

I am trying to build an Angular PWA which is supposed to be offline-capable. I got most of that already done, but I am struggeling on the events for the service worker: Where do I use the ...
dturnschek's user avatar
3 votes
1 answer
1k views

I am trying to use the Angular service worker but I get an error when trying to use it. Those are my versions: Angular CLI: 15.2.0 Node: 16.18.1 Package Manager: npm 8.19.2 OS: linux x64 Angular: 15....
A.Casanova's user avatar
  • 1,079
0 votes
2 answers
424 views

I'm currently working on ASP.Net Core App with Angular 8 for the front-end, so I have some problems with the cache thing; each time I publish a new version of my app, the DOM is not making the changes ...
Jesus's user avatar
  • 485
2 votes
0 answers
72 views

I have two websites with the same domain, the first one (which is the old one also) is developed using MEAN Stack, we were using it for years. We had enabled service worker of Angular. Now after years ...
jones's user avatar
  • 1,445
1 vote
1 answer
718 views

We have implemented the angular service worker in our app and are unhappy with having to ask the user to do a hard reload some seconds after the app has loaded. Our idea was to trigger the hard reload ...
Paul Weber's user avatar
  • 6,733
1 vote
0 answers
36 views

Hi I am new to coding and angular so please bear with me. I have not been able to get my service worker registered. I have tried both Chrome and Firefox, but I have been mainly using Chrome. I am ...
mmmgluten's user avatar
0 votes
1 answer
453 views

We have a WebApp developed with Angular 14. It is deployed on Azure Blob Storage (static website). Authentification is done with the msal library for javascript. Azure AD B2C is used as identity ...
killexe's user avatar
  • 470
0 votes
1 answer
321 views

When statically hosting an Angular Single-Page Application website in an S3 bucket through CloudFront, the errors have to be set to redirect to the index.html as HTTP 200 responses in order for the ...
MapLion's user avatar
  • 1,141
2 votes
1 answer
1k views

I am able to get the token on angular and successfully sent a message via node.js local server but I cannot receive a message on angular app. Versions: -Angular 14 -Firebase Cloud Messaging API (V1) ...
Clyde Santos's user avatar
1 vote
0 answers
97 views

I have an web app using angular 13 and ngsw with caching features. The problem is when I deployed a new version to production, then I refresh the page, it's updating to a latest version, but when I ...
Junk W's user avatar
  • 11
1 vote
1 answer
1k views

I have an Angular 14 SPA hosted on Firebase and I have the following issue: The users are using the cached version (previous version) instead of the latest version when accessing the application (...
sergiuwaxmann's user avatar
2 votes
0 answers
466 views

I am using service worker to cache lookups in my Angular 14 PWA application and everything is working fine. However, the admin in the application has the permission to add/remove lookups options which ...
Jad's user avatar
  • 29
1 vote
1 answer
555 views

I have angular version 12.2. I am using Service Worker. When I run on localhost it works fine and displays install button on browser. But when I deploy it to my server or IIS server, install button ...
Farman Ameer's user avatar
  • 1,482
1 vote
0 answers
213 views

We have a angular web application that routinely sends a request to another origin. However, we get this error for the api calls. Here's our configuration for service worker in angular under ngsw-...
The.Wolfgang.Grimmer's user avatar
0 votes
0 answers
416 views

Having issues in deployment for service workers. showing error in status #961 trying to install Trying to run angular ng-serve on port 4200, want to run angular and service worker on ng-serve <...
bharath rajesh's user avatar
1 vote
0 answers
482 views

I am using firebase push notification in my angular application, and I want to add an icon in the notification, and when the user clicks that notification redirect to a specific route in the ...
Jay Patel's user avatar
  • 293
1 vote
1 answer
238 views

We have a more or less big Web-Application. It builds up on Angular and PWA via the Angular tools are activated. It works all very well and the offline mode also works as it should. The application ...
Chris_272's user avatar
1 vote
1 answer
1k views

I have installed the angular service worker module and applied the appropriate code to the app module. I have an updateComponent that has the UI to notify the user that there's a new version available ...
user avatar
2 votes
1 answer
2k views

Angular v14. I’m using https://timdeschryver.dev/blog/angular-build-once-deploy-to-multiple-environments#platformbrowserdynamic implementation to get environment from backend in main.ts and I add it ...
sw45neutr's user avatar
  • 111
0 votes
1 answer
153 views

I'm using Angular 13 as a client connecting to a .NET Core backend. When both the backend API and the client are redeployed to the servers, how can I make sure the preexisting incompatible clients ...
user avatar
0 votes
2 answers
500 views

I'm deploying an Angular 11 app to an Azure AppService. The app uses a Service Worker. My users are experiencing caching issues. I've fixed a lot of these by setting the cache control header on the ...
Greg B's user avatar
  • 14.9k
0 votes
1 answer
840 views

Angular 12, Backend .NET 5 on same IIS instance deployed. No load balancers. I’m having a text/html instead of application/javascript response issue that occurs rarely and it seems at random and I can’...
sw45neutr's user avatar
  • 111

1
2 3 4 5
9