Search code examples
javascripthtmlweb-worker

What's the difference between Shared Worker and Worker in HTML5?


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?


Solution

  • 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.