Web-Workers

A web worker is a JavaScript that runs in the background. Independent of other scripts, without affecting the performance of the page. Web worker specification defines an API for spawning background scripts in our web application. Web workers allow us to do things like fire up long-running scripts to handle computationally intensive tasks, without blocking … Continue reading “Web-Workers”