Skip to content

Commit 2d5e561

Browse files
authored
Update README.md
1 parent 7c8523c commit 2d5e561

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Depending on the environment, it uses [Worker Threads](https://nodejs.org/api/wo
2020

2121
### The State of Multithreading in JavaScript
2222

23-
JavaScript's single-threaded nature means that tasks are executed one after the other, leading to potential performance bottlenecks and underutilized CPU resources. While [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Worker) and [Worker Threads](https://nodejs.org/api/worker_threads.html) offer a way to offload tasks to separate threads, managing the communication between these threads and their state is often complex and error-prone.
23+
JavaScript's single-threaded nature means that tasks are executed one after the other, leading to potential performance bottlenecks and underutilized CPU resources. While [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Worker) and [Worker Threads](https://nodejs.org/api/worker_threads.html) offer a way to offload tasks to separate threads, managing the state and communication between these threads is often complex and error-prone.
2424

2525
This project aims to solve these challenges by providing an intuitive Web Worker abstraction that mirrors the behavior of regular JavaScript functions.
2626
This way it feels like you're executing a regular function, but in reality, it's running in parallel on a separate threads.

0 commit comments

Comments
 (0)