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.
1. Create new project
xxxxxxxxxx
1
npx nuxi init project-name
2. Change directory to the new project
xxxxxxxxxx
1
cd project-name
3. Install dependencies
xxxxxxxxxx
1
npm install
4. Start development server
xxxxxxxxxx
1
npm run dev