Murali Singhmuralisingh.hashnode.dev·Jun 17, 2024Harnessing Parallelism: A Guide to JavaScript Web WorkersWeb Workers are a simple means for web content to run scripts in background threads. If you're wondering how JavaScript, known for its single-threaded nature, manages to execute scripts in background threads, let's dive into how web workers make thi...1 likeShared Worker
Aditya Bondeadityabonde.hashnode.dev·Apr 14, 2024Accelerating Your JavaScript Applications with Multithreading using Worker Thread.Are you tired of your JavaScript applications slowing down when performing complex computations or tasks? Do you want to utilize the full potential of your users' devices without causing UI freezes or delays? If so, then Web Workers are here to save ...Dev BlogNode.js
gunjan agarwalgunjanagarwal.hashnode.dev·Mar 16, 2024Web Workers in JavascriptJavaScript is commonly referred to as a single-threaded language. This primarily pertains to the main thread, where the browser executes the majority of tasks visible to users. These tasks encompass scripting, certain rendering processes, parsing HTM...11 likes·34 readsweb workers
Praise Babatundepraisebabtunde.hashnode.dev·Dec 31, 2023Understanding Web Workers in JavaScriptIn today's digital age, the internet has become an integral part of our daily lives. The web has revolutionized the way we communicate, work, and interact with each other. With the advent of modern web technologies, developers have been able to creat...Web Development
Nazmul Hossainnh47.hashnode.dev·Aug 29, 2023Web Workers API: When Your Browser Gets a SidekickIn the fast-paced world of web development, where browsers are the heroes, there's a little-known sidekick that goes by the name of Web Workers API. It might not wear a flashy cape, but it sure knows how to lighten the load and make your web pages fa...JavaScript JavaScript
kehinde bankolekennydev.hashnode.dev·May 2, 2023An introduction to web workersIn this tutorial, we will be going over the web workers' API. Web workers are not part of javascript, it is an API provided by the browser to make our life easier, what web workers do is that it allows us to run code on a separate thread from the jav...32 readsweb workers
Craig Bucklerblog.craigbuckler.com·Feb 14, 2023FeaturedHow to use client and server-side JavaScript web workersJavaScript applications run on a single processing thread: a program can do one thing at a time. In simpler terms, a server with a 16-core CPU runs code on one core while 15 are idle. Single threads avoid complex concurrency situations. What would ha...24 likes·487 readsJavaScript