new


Next.js Overview

Next.js Overview.


Next.js Fundamentals

  • Built in Optimizations such as image & script optimizations for improved UX
  • Dynamic HTML Streaming: instantly stream UI from the server integrated with the app router.
  • React Server Components: add components with out sending additional client side js. This feature is hear to stay.
  • Data Fetching: react components async & await our data; supports both server & client data fetching.
  • Route Handlers: we can build API endpoints to connect third party services.
  • Advance Routing & Nested Layouts: create routes using the file system including layouts.