Get started with Nuxt quickly with our online starters or start locally with your terminal.
You can start playing with Nuxt 3 in your browser using our online sandboxes:
Play on StackBlitzPlay on CodeSandbox
Before getting started, please make sure you have installed the recommended setup.
* If you already have Node.js installed, check with node --version that you are using version 14.16 or above 16.11.
*.vue files in your nuxt.config file:export default defineNuxtConfig({ typescript: { shim: false }})Open a terminal, or from Visual Studio Code, open an integrated terminal and use the following command to create a new starter project:
npx nuxi init nuxt-appOpen nuxt-app folder in Visual Studio Code:
code nuxt-appInstall the dependencies:
yarn installNow you'll be able to start your Nuxt app in development mode:
yarn dev -oNow that you've created your Nuxt 3 project, you are ready to start building your application.