Installation
Get started with Nuxt quickly with our online starters or start locally with your terminal.
Play Online
You can start playing with Nuxt 3 in your browser using our online sandboxes:
Start with one of our starters and themes directly by opening nuxt.new.
New Project
Prerequisites
- Node.js -
v18.0.0
or newer - Text editor - We recommend Visual Studio Code with the official Vue extension (previously known as Volar)
- Terminal - In order to run Nuxt commands
Additional notes for an optimal setup:
- Node.js: Make sure to use an even numbered version (18, 20, etc)
- Nuxtr: Install the community-developed Nuxtr extension
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:
npx nuxi@latest init <project-name>
Open your project folder in Visual Studio Code:
Terminal
code <project-name>
Or change directory into your new project from your terminal:
cd <project-name>
Install the dependencies:
yarn install
If you are using Yarn 2+ (Berry), add
nodeLinker: node-modules
to your .yarnrc.yml
file.
You can follow this issue status hereDevelopment Server
Now you'll be able to start your Nuxt app in development mode:
yarn dev --open
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.