Web worker support
See original GitHub issueIn order to support web worker rendering I think we would need a way to do only the diffing part in the worker that generates patches (like with Matt-Esch/virtual-dom) that are plain objects. These patches could be sent back to the window
side and patched.
Is this something that you’d be interested in supporting? If so I could possibly contribute. How difficult would it be to split patch()
into a diff and a patch?
Thanks!
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:16 (3 by maintainers)
Top Results From Across the Web
Web Workers | Can I use... Support tables for HTML5, CSS3, etc
"Can I use" provides up-to-date browser support tables for support of front-end web technologies on desktop and mobile web browsers.
Read more >Worker - Web APIs - MDN Web Docs
Chrome Edge
Worker Full support. Chrome4. Toggle history Full support. Edge...
Worker() constructor Full support. Chrome4. Toggle history Full support. Edge...
Support for ECMAScript modules Full...
Read more >The State Of Web Workers In 2021 - Smashing Magazine
A table taken from caniuse.com, showing that every browser supports Workers. Web Workers are fully supported in every browser since IE10.
Read more >Browser Compatibility Testing of Web Workers - LambdaTest
BROWSER SUPPORT FOR Web Workers · Google Chrome · Mozilla Firefox · Internet Explorer · Safari · Microsoft Edge · Opera.
Read more >Browser versions that support web workers? - Stack Overflow
Internet Explorer 10, Firefox, Chrome, Safari and Opera support Web workers. But it is a bit vague for me. It does not state...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@carloslfu I actually managed to enable DOM.select().events() and DOM.select().elements() from within the webworker, makes things alot cleaner. Basically you need to create an observable and then inform the main thread to make the listener. I can’t share any code, but it is possible.
Seems like this depends on #286.