Nuxt/docs/content/1.get-started/1.installation.md
Daniel Roe 44aeaae941
docs: getting started (#188)
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
2021-06-08 23:09:36 +02:00

1.3 KiB

Installation

Getting started with Nuxt3 is straightforward.

Prerequisites

Before installing Nuxt, you'll need to have a local development environment.

Recommended setup is:

* If you already have NodeJS installed, check with node --version to ensure using v14 or v16.

Create project

From visual studio code, open an integrated terminal and use the following command to create a new starter project:

npx degit nuxt/starter#v3 my-nuxt3-project

Open my-nuxt3-project folder in visual studio code:

code -r my-nuxt3-project

Install dependencies using yarn:

yarn install

Start Development Server

Now you'll be able to use yarn dev to start nuxt app in development mode:

yarn dev -o

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