Member-only story
Getting started with Next JS.
2 min readFeb 26, 2024
Next.js is an open-source web development framework created by the private company Vercel providing Recat-based web applications with server-side rendering and static web application generation.
Installation
System Requirements:
- Node.js 18.17 or later.
- macOS, Windows (including WSL), and Linux are supported.
Automatic Installation
We recommend starting a new Next.js app using create-next-app
, which sets up everything automatically for you. To create a project, run:
npx create-next-app@latest
On installation, you’ll see the following prompts:
What is your project named? my-app
Would you like to use TypeScript? No / Yes //Yes
Would you like to use ESLint? No / Yes //Yes
Would you like to use Tailwind CSS? No / Yes //Yes
Would you like to use `src/` directory? No / Yes //Yes
Would you like to use App Router? (recommended) No / Yes //No…