mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-14 12:48:16 +00:00
Co-authored-by: Sylvain Marroufin <marroufin.sylvain@gmail.com> Co-authored-by: Pooya Parsa <pyapar@gmail.com>
44 lines
1.1 KiB
Markdown
44 lines
1.1 KiB
Markdown
# Installation
|
|
|
|
Getting started with Nuxt3 is straightforward.
|
|
|
|
> Please skip this section if want to upgrade an existing Nuxt 2 project and go to [Bridge](/getting-started/bridge) instead.
|
|
> Learn more in the [Introduction](/getting-started/introduction).
|
|
|
|
## ✨ Create a new project
|
|
|
|
Open a terminal, or from visual studio code, open an [integrated terminal](https://code.visualstudio.com/docs/editor/integrated-terminal) and use the following command to create a new starter project:
|
|
|
|
```bash
|
|
npx nuxi init my-nuxt3-website
|
|
```
|
|
|
|
Open `my-nuxt3-projewebsitect` folder in visual studio code:
|
|
|
|
```bash
|
|
code -r my-nuxt3-website
|
|
```
|
|
|
|
Install dependencies using yarn:
|
|
|
|
```bash
|
|
yarn install
|
|
```
|
|
|
|
## 🚀 Start Development Server
|
|
|
|
Now you'll be able to use `yarn dev` to start nuxt app in development mode:
|
|
|
|
```bash
|
|
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.
|
|
|
|
- Learn about the [Concepts](/concepts)
|
|
- Learn more about [Usage](/docs)
|