Y
Hacker News
new
|
ask
|
show
|
jobs
by
akomtu
574 days ago
A simple trick to solve nearly all freezing problems: move the computations to a background thread, aka Worker in JS terms.
1 comments
aabhay
574 days ago
Another trick — use comlink (
https://github.com/GoogleChromeLabs/comlink
) to make the worker thread into essentially an async API of your local methods.
link