I found https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/onerror which says:
The onerror property of the ServiceWorkerContainer int
Perhaps you tried to set the onerror
handler on the navigator.serviceWorker
container like this:
// no effect outside service worker script
navigator.serviceWorker.onerror = function() {...};
The error handler must be set from within a service worker script with self.onerror
(self
is a special variable/attribute here that refers to ServiceWorkerGlobalScope). The onerror
callback is only provided an error message.
// inside service worker script
self.onerror = function(message) {
console.log(message);
};
Alternatively, you could listen to the service worker's error
event, which includes an ErrorEvent
containing the location of the error:
// inside service worker script
self.addEventListener('error', function(e) {
console.log(e.filename, e.lineno, e.colno, e.message);
});
Here's a demo. Be sure to delete the service workers from DevTools > Resources > Service Workers (on left panel) as it will fill with these failed service worker registrations:
I've verified the following browsers support onerror
within an instance of service worker:
UPDATE:
So when MDN describes the
ServiceWorkerContainer
interface, that is referring toself
(ServiceWorkerGlobalScope
) and notnavigator.serviceWorker
?
I think that's only true for the onerror
attribute (and maybe for the other events there as well), and I'm guessing the spec hasn't been updated to reflect the agreed upon implementation...
The Service Workers working group had decided to move onerror
from the ServiceWorkerContainer
into the service worker instance, as discussed in GitHub (slightlyoff/ServiceWorker #198):
kinu commented on Apr 2, 2014
sgtm2. For error reporting (
onerror
stuff) we could probably do similar? E.g. moving.onerror
handler from container to SW object, so that doc can explicitly know which SW the error is coming from (though it may need to attach handlers to multiple SWs).
And then there was a follow-up comment in a related issue (slightlyoff/ServiceWorker #104) that indicates lack of usefulness for onerror
on the container:
jakearchibald commented on Apr 3, 2014
Thinking about the use-cases (following from #198)…
navigator.serviceWorker.onerror
ornavigator.serviceWorker.pending.onerror
(whichever it becomes) are not useful for logging errors back to the server, as errors can happen outside of the life of any page.onerror
inside the worker itself is best for that.
.pending.onerror
is useful if you're updating the UI in response to an update. So maybe it's better as astatechange
, although you'd need somewhere to put the error message.That leaves errors that happen before the SW instance is created. AppCache has an error event that covers network-related update failures, and also parse failures. However, once again we'd lose any errors that happened outside the life of a page.