What can service workers do that web workers cannot? Or vice versa?
It seems that web workers are a subset of the functionality of service workers. Is this correct?
What can service workers do that web workers cannot? Or vice versa?
It seems that web workers are a subset of the functionality of service workers. Is this correct?
Buksy's answer is correct but in my opinion it does not answer the original question, namely: "What can service workers do that web workers cannot? Or vice versa?"
There are fundamental differences in their lifecycle and the number of instances per origin you can have. In short:
Buksy's answer is basically the last row of the table. Credit: I took this table from Demystifying Web Workers and Service Workers by Nolan Lawson, starting from slide 35.
In particular, here is how you spawn and terminate web workers:
Using Web Workers
whereas service workers have their own lifecycle, which is admittedly their "most complicated part":
The Service Worker Lifecycle
So lifecyle is one fundamental difference between the two (a consequence of their intended use).
There used to be a huge difference in browser support: Service workers were not available at all in Safari for iOS till 11.3 (2018 Mar 29), see Can I use service workers? In contrast, web workers had a much better browser support already in 2012: Can I use web workers?
There are subtle differences in their API support across browsers, see HTML5 Worker Test (also by Nolan Lawson). In a particular browser, one kind of worker might support a certain API call whereas the other does not. Visit that page and test your own browser!
There is a big difference in what they are intended for:
Web Workers
Source - Using Web Workers
Service Worker
Source - Service Worker API
So Web Workers are handy to run expensive scripts without causing the user interface to freeze, while Service Workers are useful to modify the response from network requests (for example, when building an offline app).