Logo

How to Create a Next.js App

📌 **Prerequisites**: Node.js >= 18 and npm installed.

1️⃣ Create a new app with TypeScript:

1npx create-next-app@latest my-next-app --typescript

2️⃣ Move into your project and start the server:

1cd my-next-app
2npm run dev

3️⃣ Open http://localhost:3000 to view your app.

🎉 You're all set with a new Next.js + TypeScript app!