OKOGASAWARA KAKERUinkkr-netxjs-blog.hashnode.dev00Next.js ~Server and Client Components~1d ago · 3 min read · By default, layouts and pages are Server Components, which lets you fetch data and render parts of your UI on the server, optionally cache the result, and stream it to the client. When you need interaJoin discussion
OKOGASAWARA KAKERUinkkr-netxjs-blog.hashnode.dev00Next.js ~What is the React Server Component (RSC) Payload~Jun 4 · 2 min read · The React Server Component is a specialized, compact binary data format used by Next.js to transfer the rendered result of Server Components from the server to the client. What is inside the RSC PayloJoin discussion
OKOGASAWARA KAKERUinkkr-netxjs-blog.hashnode.dev00Next.js ~Meta data~May 27 · 3 min read · Next.js(App Router) generates metadata that can be used for SEO or SNS sharing by exporting a meta object or generateMetadata functionality from layout.tsx or page.tsx.Unlike the traditional pages dirJoin discussion
OKOGASAWARA KAKERUinkkr-netxjs-blog.hashnode.dev00Next.js ~cache~May 19 · 2 min read · The cache in Next.js is a system that improves the performance of rendering results and data requests. The latest versions of Next.js (Next.js 15, 16) have shifted from automatically caching everythinJoin discussion
OKOGASAWARA KAKERUinkkr-netxjs-blog.hashnode.dev00Next.js ~streaming~May 10 · 9 min read · Streaming is a data transfer technique that allows you to break down a route into smaller "chunks" and progressively stream them from t he server to the client as they become ready. By stream, you cJoin discussion