Remix.run Logo
akomtu 5 days ago

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

aabhay 4 days 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.