Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 8, 2021 07:41 pm GMT

How To Use Web Worker

Hello everyone

In this article, we will see how can we use Web Worker API on our website to avoid blocking thread while doing CPU intensive task.

Web Worker

A web worker is a JavaScript that runs in the background, independently of other scripts, without affecting the performance of the page.

What does that mean?

As we all know, JavaScript is a single-threaded language so when executing scripts the site becomes unresponsive until the scripts are finished.

To avoid blocking the interaction of the site we can spawn a worker that will execute the scripts in the background. Thus, we can improve the performance of our website.

Web Workers uses a background thread separate from the main execution thread of a web application.

Implementation

Let's explore the Web Worker API.

Check For Browser Support

if (typeof(Worker) !== "undefined") {  // It support  ...}

We will understand the implementation with a basic example. The parent script will pass a number to the worker script and it will calculate the square root of that number and return to the parent script.

Worker object and worker script have some event listeners with the help of which we can communicate and handle errors.

web-workers.jpg

Parent Script

This javascript file will be running in the main thread.

Create Worker

// Creates a new worker objectvar worker = new Worker("./worker.js");

Receive Data

// Listen for data from the worker scriptworker.onmessage = function(e) {  // Access the data from event object  let data = e.data;  ...}

On Error

// Listen for errorworker.onerror= function(err) {  // Access the message from error object  let error = err.message;  ...}

Send Data

// Send data to the worker scriptworker.postMessage(data);

Terminate Worker

// Immediately terminates the workerworker.terminate();

Worker Script

Now we will create the javascript file worker.js.

// Listen for data from the parent scriptself.onmessage = function (e) {  // Access the data from event object  const value = Math.sqrt(e.data);  // Sending data to the parent script  self.postMessage(value);};// It fires when message can't be deserializedself.onmessageerror = function (e) {  ...};

Web Worker Access

Web Workers do not have access to the following JavaScript objects.

  • window
  • document
  • parent

Web Workers are used for more CPU intensive or heavy task like encryption, compression, long-polling etc.

Example

Check out the GitHub repo for sample code.

Try it out here.

Enjoyed? Give it a thumbs-up

Thank you for reading | Feel free to connect

Originally published on blog.bibekkakati.me


Original Link: https://dev.to/bibekkakati/how-to-use-web-worker-27gi

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To