This question has been asked and answered here and here. However, both threads are 18+ months old and things are evolving rapidly in the javascript world. So I'm asking again to get an up to date answer.
For our use we need a single background thread that will be running pretty regularly. It's for a rich editor and whenever the user edits, this background thread needs to recalculate the layout of the rich text.
It looks like Web Workers are the best approach. However, according to wikipedia "It is removed in newer Android browser versions".
Questions:
- Are Web Workers the best approach or is there something better.
- Are there browsers that are not going to support Web Workers going forward? And if so, which ones?
- Is there a list of what version of the main browsers are required for Web Workers?