Next.js என்பது ஒரு முழுத் திறன் React ஃப்ரேம்வொர்க் ஆகும். React தன்னுடையது ஒரு UI நூலகம் மாத்திரம் — இது கூறுகளை வழங்குகிறது ஆனால் வழிகாட்டல், தரவு பெறுதல், சேவகன் வழங்குதல் மற்றும் கட்டுமான கருவிகளை உங்களுக்கு விட்டுவிடுகிறது. Next.js இந்த அனைத்தையும் கூட வழங்குகிறது, மேலும் ஒரு சேவகன் இயக்க நேரம்.
React மட்டும் விட்டு செல்கிறது (மற்றும் Next.js சேர்க்கிறது)
React (library) → Next.js (framework) adds:
──────────────────────────────────────────────────
UI rendering only → File-based routing (folders = routes)
Client-side rendering → Server rendering (SSR), static generation (SSG), ISR
You wire data fetching → Built-in data fetching + caching
No backend → API routes / Route Handlers (full-stack)
Manual bundling → Zero-config build, code splitting, optimization
Manual <img> → next/image (auto-optimized images), next/font
