EN
Nuxt 3 - create new project (using npm)
3
points
In this article, we would like to show you how to create new Nuxt 3 project using npm comand.
Simple steps
1. Create new project
npx nuxi init project-name
2. Change directory to the new project
cd project-name
3. Install dependencies
npm install
4. Start development server
npm run dev