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

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)