Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What browsers currently support Web Workers?

I dug around, but couldn't find an authoritative list. Thanks!

like image 894
Newtang Avatar asked Jan 19 '11 19:01

Newtang


People also ask

Are web workers supported in all browsers?

Web Workers And ES Modules #All modern browsers support running JavaScript modules via <script type="module" src="file. js"> . All modern browsers apart from Firefox also now support the worker counterpart: new Worker("./worker.

Does Edge support web workers?

Web Workers is Fully Supported on Microsoft Edge 99.

Does Safari support web workers?

Web Workers is Fully Supported on Safari 14, which means that any user who'd be accessing your page through Safari 14 can see it perfectly. Browser incompatibility may be due to any other web technology apart from Web Workers.

What browsers you should support for your website?

' Your website should support all modern browsers, that is all versions of Chrome, Safari, Internet Explorer, Firefox and Opera released in the last couple of years. Exactly which older browsers you should support depends on your target market.


3 Answers

Probably I won't answer it better then Web Worker Support statistic

UPDATE: since the link posted above is not working (strange, but "..reported as an attack page and has been blocked.." ) I've found another one, which is the most closest to the previous one (not the same, just the closest that I could find): When can I use... Web Workers

like image 171
Maxym Avatar answered Sep 20 '22 08:09

Maxym


caniuse.com contains a comprehensive list of features for most browsers.

Here is the list of browsers that support web workers:

http://caniuse.com/#feat=webworkers

like image 44
Henrik Aasted Sørensen Avatar answered Sep 22 '22 08:09

Henrik Aasted Sørensen


According to this table at Wikipedia, at least all major layout engines except IE's seem to support it.

like image 21
schnaader Avatar answered Sep 23 '22 08:09

schnaader