Hacker News new | ask | show | jobs
by dreamdu5t 4804 days ago
What's a practical example of something that can't be done with proper evented programming, and has to be implemented using web workers?

If you need to perform CPU heavy calculations or processing of video/audio it just doesn't make sense to do it on the client even with web workers.

1 comments

pdf.js uses background workers for parsing/processing pdf pages. really any other native format which could potentially js-processed for display in a browser directly