Back to blog

Getting Started with Next.js

May 10, 2023

Next.js is a React framework that enables you to build supercharged, SEO-friendly, and extremely user-friendly static websites, as well as full-fledged web applications. Next.js provides a great developer experience with all the features you need for production.

Why Next.js?

Next.js gives you the best developer experience with all the features you need for production: hybrid static & server rendering, TypeScript support, smart bundling, route pre-fetching, and more. No config needed.

Getting Started

To create a new Next.js app, run the following command:

npx create-next-app@latest

This will create a new Next.js app for you with all the defaults set up.