iTranslated by AI
The content below is an AI-generated translation. This is an experimental feature, and may contain errors. View original article
💚
Getting Started with Nuxt: Installing via create-nuxt-app
Introduction
Nuxt allows you to easily create projects and start debugging by using create-nuxt-app.
In this article, I will introduce how to set up a Nuxt project using create-nuxt-app.
Create a Nuxt Project
npx create-nuxt-app nuxt-app
I answered the questions as shown below.
I am installing Vuetify and Jest along with it.
✨ Generating Nuxt.js project in nuxt-app
? Project name: nuxt-app
? Programming language: TypeScript
? Package manager: Npm
? UI framework: Vuetify.js
? Nuxt.js modules: (Press <space> to select, <a> to toggle all, <i> to invert selection)
? Linting tools: ESLint
? Testing framework: Jest
? Rendering mode: Single Page App
? Deployment target: Static (Static/Jamstack hosting)
? Development tools: jsconfig.json (Recommended for VS Code if you're not using typescript)
? Continuous integration: None
? Version control system: Git
Debugging Nuxt
cd nuxt-app
npm run dev
If the Nuxt logo is displayed, it is a success.
I have summarized the knowledge I gained from developing at home every day for two and a half years! Please check it out if you'd like.
Discussion