Service Workers: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(Note that Android is a risk)
(Add SW demos/examples)
Line 39: Line 39:
   }
   }
</bugzilla>
</bugzilla>
==Demos/examples==
* https://azasypkin.github.io/sw-tests/permanent-redirect/
* https://jakearchibald.github.io/trained-to-thrill/ - the canonical example
* https://www.pinterest.com/ - seems to be used for Push
* https://github.com/GoogleChrome/samples/tree/gh-pages/service-worker - a number of examples here
* https://busrouter.sg/ - Only offlines its app shell and not map tiles or other data.
* https://www.parleys.com/
* https://guitar-tuner.appspot.com/

Revision as of 17:26, 18 September 2015

Service Workers are presently being implemented in Gecko. Biweekly calls (2015-08-12 is the next one) are held on Wednesdays at 8 AM Pacific in the WebAPI Vidyo room to discuss status and blockers for consumers. Email Andrew Overholt [:overholt] if you want to be added to the meeting invite or just show up.

Most people working on the implementation hang out in #content on IRC.

Implementation status

Lots of code has been written and much functionality exists. There are a variety of prefs you can flip in about:config to turn them on: dom.serviceWorkers.enabled, dom.serviceWorkers.interception.enabled, etc.

Filing bugs (in Core :: DOM: Service Workers) describing problems you have is highly appreciated.

An audit of call sites where existing networking security functionality can be affected by a Service Worker's interception is underway. The results of this are filtering into Bugzilla and the remaining blockers are tracked as below.

Shipping on Desktop and Android (Android is a bit of a risk due to a lack of usage) (bug 1059784)

No results.

0 Total; 0 Open (0%); 0 Resolved (0%); 0 Verified (0%);


Shipping on Boot2Gecko (aka Firefox OS) (bug 1131322)

No results.

0 Total; 0 Open (0%); 0 Resolved (0%); 0 Verified (0%);


Things we likely won't get to in the first release supporting Service Workers (bug 1173500)

No results.

0 Total; 0 Open (0%); 0 Resolved (0%); 0 Verified (0%);


Demos/examples