Nuxt/docs/content/1.getting-started/2.installation.md

91 lines
1.7 KiB
Markdown

# Installation
Getting started with Nuxt 3 is straightforward.
::alert
If you want to migrate an existing Nuxt 2 project, skip this and follow the [Bridge instructions](/getting-started/bridge) instead.<br>
Learn more in [Introduction](/getting-started/introduction).
::
## Play online
You can start playing with Nuxt 3 in your browser using our online sandboxes:
:button-link[Play on StackBlitz]{href="https://stackblitz.com/github/nuxt/starter/tree/v3-stackblitz" blank}
:button-link[Play on CodeSandBox]{href="https://codesandbox.io/s/github/nuxt/starter/tree/v3-codesandbox" blank}
## New project
Open a terminal, or from [Visual Studio Code](https://code.visualstudio.com/), open an [integrated terminal](https://code.visualstudio.com/docs/editor/integrated-terminal) and use the following command to create a new starter project:
::code-group
```bash [npx]
npx nuxi init nuxt3-app
```
```bash [yarn2]
yarn dlx nuxi init nuxt3-app
```
```bash [pnpm]
pnpm dlx nuxi init nuxt3-app
```
::
Open `nuxt3-app` folder in visual studio code:
```bash
code nuxt3-app
```
Install the dependencies:
::code-group
```bash [yarn]
yarn install
```
```bash [npm]
npm install
```
```bash [pnpm]
pnpm install --shamefully-hoist
```
::
## Development server
Now you'll be able to use `yarn dev` to start your nuxt app in development mode:
::code-group
```bash [yarn]
yarn dev -o
```
```bash [npm]
npm run dev -- -o
```
```bash [pnpm]
pnpm run dev -- -o
```
::
::alert{type=success icon=✨ .font-bold}
Well done! A browser window should automatically open for <http://localhost:3000>
::
## Next steps
Now that you've created your Nuxt 3 project, you are ready to start building your application.
- Learn about the [Concepts](/concepts)
- Learn more about the [Usage](/docs)