N
License:MIT
Open source Self-hostable Next.js
About
The React framework for production — full-stack pages, API routes, static generation, streaming and edge rendering in one toolkit. Built by Vercel, it powers some of the largest sites on the web.
Pricing
Free
Next.js is a React framework that gives you file-based routing, server-side rendering, static site generation, and API endpoints in a single project. It works with any Node.js hosting — including Vercel, self-hosted servers, Docker, and serverless platforms.
Key Features
- App Router with React Server Components and streaming.
- File-based routing under
app/andpages/. - API routes and route handlers for serverless endpoints.
- Image optimization with the built-in
next/imagecomponent. - Middleware for edge routing and A/B testing.
- Incremental Static Regeneration (ISR) for hybrid content.
Pricing
Next.js is free and open source under the MIT license. Vercel offers managed hosting with a free Hobby tier.
Getting Started
npx create-next-app@latest my-app
cd my-app
npm run dev
Open http://localhost:3000 and edit app/page.tsx to see hot reloading in action.