create-nuxt-app is a scaffolding tool created by the Nuxt team that you can use to install your project quickly. What you need to do is use npx to run create-nuxt-app on your favorite terminal:
$ npx create-nuxt-app <project-name>
npx is shipped by default since npm 5.2.0, but you can make sure you have it installed by checking its version on your terminal, as follows:
$ npx --version
6.14.5
During the process of installing the Nuxt project, you will be asked some questions to integrate with Nuxt, as follows:
- Choose a programming language:
JavaScript
TypeScript
- Choose a package manager:
Yarn
Npm
- Choose a UI framework:
None
Ant Design Vue
Bootstrap Vue
...
- Choose a testing framework:
None
Jest
AVA
WebdriverIO
Let's create your first Nuxt app, called first-nuxt, using npx. So, choose a local directory on your machine, open a terminal on that directory, and run npx create-nuxt-app first-nuxt. When you come across the questions like the previously...