Skip to content

bespoyasov/web-worker-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Using Web Workers to Boost Performance

Read in Russian.

Web Workers is a technology that allows the browser run scripts “in the background”. We can use them to boost performance of heavy-weight tasks that contain a lot of calculations and don't depend on the DOM.

This app show an example of how you can use web workers to improve the performance of you projects.

Sources