Remix.run Logo
akomtu 2 years ago

A simple trick to solve nearly all freezing problems: move the computations to a background thread, aka Worker in JS terms.

aabhay 2 years ago | parent [-]

Another trick — use comlink (https://github.com/GoogleChromeLabs/comlink) to make the worker thread into essentially an async API of your local methods.