Starting a New Project with Nuxt 3 ? follow these steps šŸ‘‡

This article will guide you through the process of setting up a new project with Nuxt 3.

The following instructions are taken from the Nuxt Documentation.
šŸ“¦ check it out here šŸ‘‰ Nuxt3
or go throug the to create a new project with nuxt

Prerequisites

  • Node.js (latest LTS version) šŸ‘‰ Download
  • Visual Studio Code šŸ‘‰ Download
  • Volar Extension šŸ‘‰ Download
  • Either enable Take Over Mode (recommended) ... or add TypeScript Vue Plugin (Volar) šŸ‘‰ Download
  • * If you already have Node.js installed, check in your terminal āŒØļø

node --version above 16.11.

Start a new Project

  • Create a new starter project in your Terminal: āŒØļø

npx nuxi init [project-name]

  • Open your project folder in Visual Studio Code: āŒØļø

code [project-name]

  • In your Terminal install the dependencies: āŒØļø

npm install

  • Start Development Server: āŒØļø

npm run dev 

Well done! A browser window should automatically open for http://localhost:3000