Remix.run Logo
akomtu 7 months ago

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

aabhay 7 months 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.