After reading this blog post: http://www.sitepoint.com/javascript-shared-web-workers-html5/
I don't get it. What's the difference between a Worker
and a SharedWorker
?
Very basic distinction: a Worker
can only be accessed from the script that created it, a SharedWorker
can be accessed by any script that comes from the same domain.