zlacker

[return to "Apple’s refusal to support Progressive Web Apps is a detriment to the web"]
1. aedron+g8[view] [source] 2017-07-27 12:33:26
>>jaffat+(OP)
Since the article did not go into details, and many of the points seem nonsensical, can someone elaborate?

Why can I not "Create an app loading screen" without service workers? Why can I not "Create an initial app UI to load instantly"? Seems these are trivially possible with regular Javascript, but maybe I'm misunderstanding?

Similarly, "Use push notifications", "Add offline support" and "Prompt installation to the home screen" do not sound like APIs that are dependent on service workers, but I guess they are? (or the article makes no sense)

(By the way, the 300ms tap delay that he gripes about can be hacked away, see fastclick.js)

◧◩
2. mnaray+lb[view] [source] 2017-07-27 13:04:08
>>aedron+g8
> Why can I not "Create an app loading screen" without service workers? Why can I not "Create an initial app UI to load instantly"? Seems these are trivially possible with regular Javascript, but maybe I'm misunderstanding?

If you're waiting on async requests than everything is fine without Service Workers, but if you're performing computation then the whole UI will be blocked.

[go to top]