DEV Community

Cover image for Create A Project With Next.Js
Hòa Nguyễn Coder
Hòa Nguyễn Coder

Posted on

Create A Project With Next.Js

Now I will learn about Next.js , take notes on what I have experienced through it and what I can do. To be here sometimes we may need it. Currently I am using the latest version of Next.JS

npx create-next-app@latest
Enter fullscreen mode Exit fullscreen mode

It will appear a copy, if you like which one, select yes, and for me, select yes all ::)

What is your project named? my-app
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
What import alias would you like configured? @/*
Enter fullscreen mode Exit fullscreen mode

Create A Project With Next.Js - hoanguyenit.com
We will get a project like this:

Create A Project With Next.Js - hoanguyenit.com

Create A Project With Next.Js - hoanguyenit.com
So we have a simple project. To start, just run the following command:

npm run dev
Enter fullscreen mode Exit fullscreen mode

Create A Project With Next.Js - hoanguyenit.com
See you again in the following article:
The article : Create A Project With Next.Js

Top comments (0)