Deep dives into React internals, V8 optimizations, frontend architecture, and web security. No beginner tutorials — just the internals most developers never explore.
Deep dives on React internals, V8, and frontend architecture — no fluff. Roughly twice a month.
Story Feed
Showing 6 stories
Showing 1-6 of 6 posts
A deep technical guide to Async Context and AsyncLocalStorage in JavaScript. Learn how request context propagation works across async boundaries, how runtimes track execution state, and how to avoid parameter drilling in complex backend systems.
A deep technical walkthrough of how Babel transforms your JavaScript. Explore AST parsing, traversal with plugin visitors, code generation, and how the compilation pipeline enables modern syntax, framework tooling, and custom transformations.
A deep technical exploration of Atomics and SharedArrayBuffer in JavaScript. Learn how they enable true parallelism, how memory sharing works across workers, and what it takes to build low-level concurrent systems in the browser and Node.js.
A deep technical breakdown of how async/await works under the hood. Learn how V8 transforms your code into a state machine, how promises and microtasks interact with the event loop, and what this means for performance and debugging.
A deep dive into JavaScript’s WeakRef and FinalizationRegistry. Learn how they interact with garbage collection, when they’re useful, why they’re dangerous, and how to reason about memory-sensitive architectures in modern JS runtimes.
A deep dive into how V8 executes your JavaScript—covering parsing, hidden classes, inline caching, JIT compilation, de-optimizations, and garbage collection. Learn how understanding the engine changes how you write high-performance code.