DEV Community

Olukayode Asemudara
Olukayode Asemudara

Posted on

Your first Nuxt-3 App

Prerequisites for installing Nuxt-3 on your device;

  • Node.js - v18.0.0 or newer

  • Text editor - We recommend Visual Studio Code with the Volar Extension

  • Terminal - In order to run Nuxt commands

Now go to the nuxt website to get started with setting up your nuxt app. Click on the get started button and follow these prompts;

  • npx nuxi@latest init (Open a terminal (if you're using Visual Studio Code, you can open an integrated terminal) and use the following command to create a new starter project:).

  • code . (Open your project folder in Visual Studio Code:)

  • cd (Or change directory into your new project from your terminal:)

  • npm install (Install the dependencies:)

  • npm run dev (Now you'll be able to start your Nuxt app in development mode:)

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

Top comments (0)