
works with
GITHUB Social
commit graph
commit board
Project Compilation
Articles
Making React Server Components "Stateful": Trial #1
RSC is a serialization and streaming model for UI, not a runtime. This post explains why RSC is stateless by design, then explores Trial #1: externalizing navigation memory into Edge KV so the server can remember what it already fetched—without making the stream stateful.
Interop Should Be a New Rewrite
Language interoperability is the most important technical problem of the next decade. Explore how Rust is becoming the performance core for high-level languages like JavaScript and Python, why FFI matters more than ever, and how tools like napi-rs are enabling one high-performance core with many language frontends.
Directives as Execution Boundaries, Not JavaScript Features
Directives like "use workflow" and "use step" are not JavaScript features, they're compile-time execution boundary markers. This post explores why they exist, how they differ from function wrappers, and why determinism requires explicit boundaries.
Server Actions: The Network Boundary You Forgot About.
Server Actions feel like local function calls, but they're actually network requests. This deep dive explores what really happens under the hood: the client proxy, the RSC payload format, POST-only semantics, and the trade-offs that shape developer experience.