From the journal

React Series #01: How to create a new project using Next.js.

Next.js is a framework of React. It comes with many features and you can easily extend and create amazing projects using this framework. Here I will show you how to create a new project and what…

Explore this page ↓
React Series #01: How to create a new project using Next.js
React Series #01: How to create a new project using Next.js
Share

Next.js is a framework of React. It comes with many features and you can easily extend and create amazing projects using this framework. Here I will show you how to create a new project and what option to choose while installing.

npx create-next-app@latest

✔ What is your project named? … raxb

✔ Would you like to use TypeScript? … No / Yes

✔ Would you like to use ESLint? … No / Yes

✔ Would you like to use Tailwind CSS? … No / Yes

✔ Would you like to use `src/` directory? … No / Yes

✔ Would you like to use App Router? (recommended) … No / Yes

✔ Would you like to customize the default import alias (@/*)? … No / Yes

Keep reading