docs/1.getting-started/02.installation.md
If you just want to play around with Nuxt in your browser without setting up a project, you can use one of our online sandboxes:
::card-group :card{title="Open on StackBlitz" icon="i-simple-icons-stackblitz" to="https://nuxt.new/s/v4" target="_blank"} :card{title="Open on CodeSandbox" icon="i-simple-icons-codesandbox" to="https://nuxt.new/c/v4" target="_blank"} ::
Or follow the steps below to set up a new Nuxt project on your computer.
20.x or newer (but we recommend the active LTS release)::note ::details :summary[Additional notes for an optimal setup:]
location points to the @vue/language-server package directory, not its binary. See the Neovim setup guide for a working configuration.localhost:3000 for local dev server on Windows, use 127.0.0.1 for much faster loading experience on browsers.
::
::Open a terminal (if you're using Visual Studio Code, you can open an integrated terminal) and use the following command to create a new starter project:
::code-group{sync="pm"}
npm create nuxt@latest <project-name>
yarn create nuxt <project-name>
pnpm create nuxt@latest <project-name>
bun create nuxt@latest <project-name>
deno -A npm:create-nuxt@latest <project-name>
::
::tip Alternatively, you can find other starters or themes by opening nuxt.new and following the instructions there. ::
Open your project folder in Visual Studio Code:
code <project-name>
Or change directory into your new project from your terminal:
cd <project-name>
Now you'll be able to start your Nuxt app in development mode:
::code-group{sync="pm"}
npm run dev -- -o
yarn dev --open
pnpm dev -o
bun run dev -o
# To use the Bun runtime during development
# bun --bun run dev -o
deno run dev -o
::
::tip{icon="i-lucide-circle-check"} Well done! A browser window should automatically open for http://localhost:3000. ::
Now that you've created your Nuxt project, you are ready to start building your application.
:read-more{title="Nuxt Concepts" to="/docs/4.x/guide/concepts"}