RE: Push API and Service Workers

I'm not an expert either, but it seems to me that push without service workers (or some other means of background processing) is basically just server-sent events. That is, you could send "push notifications" to an active webpage over a server-sent events channel (or web socket, or long-polling...), which would allow it to display a toast notification with the push message.

So from my perspective, implementing the push API without service workers would be pretty pointless, as it would give no new capabilities.

Received on Wednesday, 15 October 2014 21:59:13 UTC