Skip to content

Udemy - JavaScript Web Workers Visualized - Crash Course 2026

Unverified source. This magnet is from an unverified source. The content may be unsafe or mislabeled. Proceed with caution.
Title: Udemy - JavaScript Web Workers VisualizedGroup: NOGRPSource: Udemy
Info Hash
61C595074F8FF4F34874226A117C13D968763FF5
Source
Unverified
Total Size
2.24 GB
Total Files
81
Seeders
1
Leechers
0
Health
1.00
Score
2
Type
Bookware

File List

FileSize
Get Bonus Downloads Here.url180 B
~Get Your Files Here !/1 - JavaScript runtime environment/1. How does JavaScript work (Description).html1.59 KB
~Get Your Files Here !/1 - JavaScript runtime environment/1. Section overview (Description).html801 B
~Get Your Files Here !/1 - JavaScript runtime environment/1. Section overview.html6.35 KB
~Get Your Files Here !/1 - JavaScript runtime environment/2. What is a JavaScript runtime environment (Description).html1.33 KB
~Get Your Files Here !/1 - JavaScript runtime environment/2. What is a JavaScript runtime environment.mp4137.55 MB
~Get Your Files Here !/1 - JavaScript runtime environment/3. Simple code example in a web browser and Node.js (Description).html947 B
~Get Your Files Here !/1 - JavaScript runtime environment/3. Simple code example in a web browser and Node.js.mp470.75 MB
~Get Your Files Here !/1 - JavaScript runtime environment/4. How the call stack works (synchronous operations) (Description).html1.35 KB
~Get Your Files Here !/1 - JavaScript runtime environment/4. How the call stack works (synchronous operations).mp463.5 MB
~Get Your Files Here !/1 - JavaScript runtime environment/5. The call stack is like a stack of trays (Description).html738 B
~Get Your Files Here !/1 - JavaScript runtime environment/5. The call stack is like a stack of trays.html6.36 KB
~Get Your Files Here !/1 - JavaScript runtime environment/6. The problem with having one call stack (Description).html1.27 KB
~Get Your Files Here !/1 - JavaScript runtime environment/6. The problem with having one call stack.mp485.53 MB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/10. Concurrency intro (Description).html1.24 KB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/10. Concurrency intro.mp461.58 MB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/11. Concurrency explained (Description).html1.13 KB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/11. Concurrency explained.html6.81 KB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/12. Parallelism (Description).html1.32 KB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/12. Parallelism.mp499.82 MB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/13. When to use (and NOT to use) web workers (Description).html1.31 KB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/13. When to use (and NOT to use) web workers.mp456.39 MB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/14. Wrapping up with understanding our section example (Description).html896 B
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/14. Wrapping up with understanding our section example.mp4205.98 MB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/14. index.html2.2 KB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/2. Threads and cores (Description).html1.48 KB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/7. Section intro (Description).html767 B
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/7. Section intro.mp460.28 MB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/8. What are threads (Description).html1.41 KB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/8. What are threads.mp452.54 MB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/9. Threads run on CPU cores (Description).html1.46 KB
~Get Your Files Here !/2 - Threads, cores, concurrency and parallelism/9. Threads run on CPU cores.mp4105.1 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/1. Setting up a web worker.html3.67 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/15. Intro to Web Workers and how they work (Description).html887 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/15. Intro to Web Workers and how they work.mp489.36 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/16. Setting up a Web Worker (Description).html890 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/16. Setting up a Web Worker.mp4142 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/17. Web Workers vs Worker Threads (Description).html1.54 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/17. Web Workers vs Worker Threads.html6.44 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/18. Web Workers and the main thread do not share the same variables (Description).html1.13 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/18. Web Workers and the main thread do not share the same variables.mp457.97 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/19. What does the line const worker = new Worker() do (Description).html1.23 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/19. What does the line const worker = new Worker() do.html6.03 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/20. Sending a message from the main thread to the worker with postMessage (Description).html1.44 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/20. Sending a message from the main thread to the worker with postMessage.mp490.05 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/21. Performing a task in the worker (Description).html904 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/21. Performing a task in the worker.mp476.83 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/22. Closing a web worker, and project files (Description).html1.38 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/22. Closing a web worker, and project files.mp470.54 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/23. self.close() versus worker.terminate() (Description).html1.58 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/23. self.close() versus worker.terminate().html8.46 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/24. Setting up a Node server project to run heavy tasks (Description).html972 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/24. Setting up a Node server project to run heavy tasks.mp4151.12 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/24. index.js1.15 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/25. Next up - viewing CPU utilization (Description).html708 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/25. Next up - viewing CPU utilization.html5.77 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/26. Viewing CPU utilization when running a Node task (Description).html1.06 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/26. Viewing CPU utilization when running a Node task.mp449.66 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/27. Creating a worker in Node, using the worker_threads module (Description).html1.35 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/27. Creating a worker in Node, using the worker_threads module.mp4114.11 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/28. Why do we have to import a Worker in Node.js (Description).html901 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/28. Why do we have to import a Worker in Node.js.html6.57 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/29. Refactoring code, creating a dynamic run function and allocating tasks evenly (Description).html1.09 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/29. Refactoring code, creating a dynamic run function and allocating tasks evenly.mp4166.96 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/3. Web Workers (Description).html1.44 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/3. Web Workers.html24.65 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/3. worker_threads_final/index.js1.46 KB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/3. worker_threads_final/worker.js347 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/30. Completing our JavaScript code and sending each worker, a task to perform (Description).html880 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/30. Completing our JavaScript code and sending each worker, a task to perform.mp4104.06 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/31. Testing code, and seeing the full power of workers! (Description).html983 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/31. Testing code, and seeing the full power of workers!.mp4113.64 MB
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/intro/index.html603 B
~Get Your Files Here !/3 - Web Workers (and yes, worker threads)/intro/worker.js481 B
~Get Your Files Here !/4 - Web Worker Test/1. Web Workers Course Test (Description).html1.38 KB
~Get Your Files Here !/4 - Web Worker Test/1. Web Workers Course Test.html61.72 KB
~Get Your Files Here !/5 - Outro/32. Quick word on where to take your skills to next (Description).html1.19 KB
~Get Your Files Here !/5 - Outro/32. Quick word on where to take your skills to next.html6.71 KB
~Get Your Files Here !/5 - Outro/33. Outro (Description).html629 B
~Get Your Files Here !/5 - Outro/33. Outro.mp464.46 MB
~Get Your Files Here !/Bonus Resources.txt70 B

Trackers

No trackers found.