mhulse / js-patterns

Some of my favorite JavaScript plugin design patterns: The Facade Pattern, The Revealing Module Pattern, Immediately-invoked Function Expressions (IIFE)s, The Module Pattern imports and exports …
3 stars 1 forks source link

JavaScript operations that are blocking #16

Open mhulse opened 5 years ago

mhulse commented 5 years ago

Unfortunately, some JavaScript operations will always be synchronous, including:

running calculations updating the DOM using localStorage or IndexedDB to store and retrieve data.

https://www.sitepoint.com/avoiding-dom-blocking/