Installation of Nuxt
Learn how to install Nuxt locally.
We'll cover the following...
Installing Nuxt
While it’s possible to install and configure Nuxt manually, it has its own installation tool, which does the initial configuration for us and provides us with a skeleton application layout to get us started. We can install Nuxt by following one of the methods given below.
Installing Nuxt with npx
We can start the installation process by running the following command:
npx create-nuxt-app <project-name>
Note: This assumes we have npm 5.2.0+ installed.
To check the version of Nuxt, we can use the following command in our terminal:
nuxt --version
The npx
command is a handy npm utility that will load and run the installer without the need to ...