Nuxt/docs/content/1.getting-started/2.installation.md
Sébastien Chopin 18cf0ba865
chore(docs): improvements (#655)
Co-authored-by: Sylvain Marroufin <marroufin.sylvain@gmail.com>
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
2021-10-11 14:57:54 +02:00

1.1 KiB

Installation

Getting started with Nuxt3 is straightforward.

Please skip this section if want to upgrade an existing Nuxt 2 project and go to Bridge instead. Learn more in the Introduction.

Create a new project

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

npx nuxi init my-nuxt3-website

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

code -r my-nuxt3-website

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

Next steps

Once you created your Nuxt 3 application, you are ready to start building you next application.