mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-12 03:38:07 +00:00
Co-authored-by: Sylvain Marroufin <marroufin.sylvain@gmail.com> Co-authored-by: Pooya Parsa <pyapar@gmail.com>
1.1 KiB
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.