Tag: #react
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 15 posts
Korean Dev Blog Curation 4 — Frontend, 14 Posts I Opened and Checked
Fourteen Korean-language frontend posts selected for being concrete and reproducible. They cover closures explained through execution context, why JavaScript chose prototypes, TypeScript conditional types and infer, why
2026-08-12 · 12 min read #curation#큐레이션#frontend#javascript#typescriptReact Compiler Got Ported to Rust — What Merged, What Did Not, and That "10x" Number
On June 9, 2026, PR 36173 — a Rust port of React Compiler — merged into facebook/react main. It added more than 120,000 lines across 461 files, and the number "3x faster as a Babel plugin, about 10x faster in the transfo
2026-07-16 · 19 min read #react#rust#compiler#performance#frontendNext.js 16 Architecture — A Deep Dive into Turbopack and Cache Components
A deep look at the Next.js 16 architecture through the lens of App Router structure, the server/client component boundary, rendering models, Cache Components, and Turbopack, now the default bundler. We unpack the request
2026-06-27 · 11 min read #nextjs#turbopack#cache-components#app-router#renderingCode Becomes the Agents Execution Substrate: A Code-as-Harness View
This post reframes code not as an LLMs final artifact but as the execution harness through which an agent interacts with its environment. Centered on verification loops, tool calling, and execution feedback, it lays out
2026-06-25 · 19 min read #ai#agentic-coding#llm-agents#tool-calling#reactFrontend Frameworks 2026 Complete Guide - React 19, Vue 3.6 Vapor, Svelte 5, SolidJS 2, Qwik, Astro 5, HTMX 2, Next 16, Nuxt 4, Angular 19, Tailwind 4, Vite 6 Deep Dive
As of May 2026 the frontend landscape is unrecognizable compared to four years ago. React 19.1 with the React Compiler is GA, Vue 3.6 shipped Vapor Mode, Svelte 5 runes are settled and SvelteKit 3 followed, SolidJS hit 2
2026-05-16 · 18 min read #frontend#react#vue#svelte#solidjsTanStack Start — Full-Stack React Without RSC, a Real Next.js Alternative (Deep Dive 2026) (english)
Tanner Linsley's full-stack React framework, TanStack Start, hit GA in 2025. Built on TanStack Router + TanStack Query + Vinxi + Nitro — data, routing, and server functions stay type-safe end-to-end without ever touching
2026-05-14 · 24 min read #tanstack-start#tanstack-router#tanstack-query#react#fullstackReact Server Components & Next.js App Router — RSC Protocol, Server Actions, PPR, Streaming (2025)
Why Server Components exist, how they differ from SSR, the real boundary between "use server" and "use client", the RSC Flight Format and streaming, Server Actions replacing fetch, the four cache layers of App Router, Ne
2026-04-15 · 10 min read #react#nextjs#rsc#server-components#app-routerTypeScript & Next.js Practical Guide — Type-Safe Full-Stack Development
Everything about modern web development, from TypeScript advanced type system to Next.js 15 App Router, Server Components, and Server Actions.
2026-04-12 · 21 min read #ai#typescript#nextjs#react#fullstackState Management Complete Comparison 2025: React Context vs Zustand vs Jotai vs Redux Toolkit vs Recoil
Everything about state management in 2025! 5-way comparison, TanStack Query for server state, Signals paradigm, bundle size/performance/DX benchmarks, and project-specific selection guide.
2026-03-24 · 19 min read #state-management#react#zustand#jotai#redux-toolkitNext.js 15 + React 19 Complete Guide: Server Components to Server Actions — 2025 Production Handbook
Master the innovations of Next.js 15 and React 19. From Server Components and Server Actions to Turbopack, PPR, caching strategies, and advanced App Router patterns — a production-ready guide for developers migrating fro
2026-03-23 · 34 min read #nextjs#react#server-components#server-actions#rscLLM Agent Design Patterns: From ReAct to Multi-Agent Orchestration
ReAct, Chain of Thought, Plan-and-Execute, Reflection, Tree of Thoughts — a practical breakdown of which LLM agent design pattern to use and when, from an engineer who has built them in production.
2026-03-18 · 9 min read #ai-agent#react#llm#design-patterns#ai-developmentReact Server Components and Server-First Web Development: The New Standard in 2026
React Server Components (RSC) have become the standard in frontend development in 2026. This comprehensive guide covers RSC fundamentals, Next.js 15 implementation, migration from traditional approaches, and measurable C
2026-03-16 · 10 min read #react#nextjs#web-development#server-components#frontendAdvanced LLM Prompt Engineering: Chain-of-Thought, Tree-of-Thought, ReAct, and Few-Shot Pattern Practical Guide
A comprehensive practical guide covering Zero-shot/Few-shot prompting foundations, Chain-of-Thought (CoT), Self-Consistency, Tree-of-Thought (ToT), ReAct pattern theory and implementation, structured output prompting, pr
2026-03-12 · 21 min read #llm#prompt-engineering#chain-of-thought#tree-of-thought#reactReact SPA Authentication Practical Guide — Cookie vs Storage, Axios Interceptors, XSS/CSRF Defense Complete Mastery
Master everything about managing authentication state in React SPAs, from comparing cookies, localStorage, and in-memory storage to Axios interceptors, XSS/CSRF defense, with practical code examples.
2026-03-08 · 20 min read #architecture#authentication#react#jwt#cookieBuilding LLM Agent Systems: Complete Analysis of Tool Use, Planning, and Memory
Analyzing the core concepts of LLM Agents — Tool Use, Planning, and Memory — based on LangGraph and Anthropic official documentation, and building a practical Agent.
2026-03-01 · 21 min read #llm#ai-agent#tool-use#langgraph#react