Skip to main content

nextjs

"Next.js is an open-source web development framework created by Vercel enabling React-based web applications with server-side rendering and generating static websites."

Features

  • Server-side Rendering (SSR)
  • Static-site Generation (SSG)
  • Client-side Rendering (CSR)
  • API routes
    • Clean delineation in code
  • File based routing
    • Anything in the pages directory automatically become routes
  • Dynamic routing
  • Code-splitting + bundling
  • TypeScript support
  • Data fetching (multiple ways)
  • Middleware
  • Image optimizations

Getting Started

npx create-next-app@latest

What's New In?

13.2

  • Router updates
  • SEO
  • Statically typed links

Templates