Posts tagged “performance”
5 posts found
Streams API: Processing Large Data Efficiently in JavaScript
January 19, 2026
Master JavaScript Streams API to process large files efficiently. Learn ReadableStream, WritableStream, and TransformStream with real examples.
5 Real-Life Node.js Worker Threads Use Cases That Will Save Your Event Loop
January 14, 2026
Discover 5 production-ready Node.js Worker Threads use cases that solve CPU-intensive bottlenecks. Learn when async isn't enough with real code examples and benchmarks.
Virtualization for Long Lists: Performance in JavaScript
January 11, 2026
Rendering 10,000 items? Virtualization reduces DOM nodes from thousands to ~50, transforming sluggish lists into butter-smooth experiences. Here's how.
The Power of Caching in JavaScript
January 18, 2022
As our applications become larger the need for performance grows. Performance can be achieved by caching. In this post we will go over powerful ways caching can improve the way you think and write efficient code.
2 Reasons Why You Must Understand Delegate Prototypes
July 23, 2019
This article will go over a known anti-pattern with delegate prototypes and also explain how to turn that around to improve your apps performance